我在类构造函数中初始化 QVector 时遇到问题。这是我的头文件中的行:
QVector<Person *> p;
这是我的构造函数中的行:
this->p = new QVector<Person *>();
这是错误:
Error: no match for 'operator=' (operand types are 'QVector<Person*>' and 'QVector<Person*>*')
this->p = new QVector<Person *>();
^
我不知道有什么问题。