所以我有一个结构:
struct Alarm{
Alarm(QString operation, double comparison, QString text, quint8 color):
operation(operation), comparison(comparison), text(text), color(color){}
int element;
QString operation;
double comparison;
QString text;
quint8 color;
QDateTime riseTime;
};
请注意,它没有默认的构造函数Alarm()
。
我想要一个具有这种结构的对象的向量容器。如果我尝试使用QVector
,则该代码将无法在尝试添加新对象的代码中编译,并出现以下错误:
/usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h: In instantiation of ‘void QVector<T>::defaultConstruct(T*, T*) [with T = Alarm]’:
/usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:580:41: required from ‘void QVector<T>::reallocData(int, int, QArrayData::AllocationOptions) [with T = Alarm; QArrayData::AllocationOptions = QFlags<QArrayData::AllocationOption>]’
/usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:654:20: required from ‘void QVector<T>::append(const T&) [with T = Alarm]’
/usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:280:13: required from ‘QVector<T>& QVector<T>::operator<<(const T&) [with T = Alarm]’
/opt/buildagent/work/1a89dfc8903ef3d7/ground/gcs/src/plugins/qmlview/Alarms.cpp:56:243: required from here
/usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:322:13: error: no matching function for call to ‘Alarm::Alarm()’
new (from++) T();
看来QVector
要求它拥有的类具有默认构造函数。但是,使用std::vector<T>
编译就可以了。
我的问题是为什么? 使用QVector使用具有默认构造函数的类是否是必需条件?还是我没有正确使用容器?
答案 0 :(得分:1)
std :: vector工作原理不同的原因在于,在vector中,分配了未初始化的原始内存,然后在需要时调用copy构造函数进行复制。此过程不需要为resize()调用默认构造函数。这就是为什么默认构造函数没有这种依赖性的原因。
另一方面,由于内部函数realloc()的实现方式,QVector要求type是默认可构造的。
根据QT文档:
存储在各个容器中的值可以是任何可分配的 数据类型。要获得资格,类型必须提供默认的构造函数,即 复制构造函数和赋值运算符。这涵盖了大多数数据 您可能希望存储在容器中的类型,包括基本类型 类型,例如int和double,指针类型