我在一个类中有一个名为能力的QList元素,另一个名为k的类对象。我想做一个深层复制(this.competence必须是k.competence的深层副本)。 我使用迭代器:
QList< QString>::iterator it;
for( it = k.competence->begin(); it != k.competence->end(); ++it )
{
this.competence << (*it) ;
}
我收到错误“无法匹配运营商&lt;&lt;”。 问题是每当我在循环中尝试这个时:
QList< QString>::iterator it;
it = k.competence->begin();
this.competence << *it;
它没有错误。
编辑:解决使用QList.append()方法而不是运算符&lt;&lt;
答案 0 :(得分:1)
我没有在这里得到你的用例,只需复制它就可以做一个QList的浅表副本。如果您进一步修改共享实例,则会创建一个深层副本。
QList newList(oldList);
如果您想按照自己的方式进行操作,则需要将迭代器附加到新列表
QList newList;
for(QList< QString>::iterator it = oldList->begin(); it != oldList->end(); it++ )
{
newList.append(*it) ;
}