QList
Posted mCat
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QList相关的知识,希望对你有一定的参考价值。
#include <QCoreApplication> #include<QList> #include<QDebug> int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); QList<int> List; for(int i = 0; i < 10; i++) { List.append(i); } QMutableListIterator<int> Iter(List); while(Iter.hasNext()) { int i = Iter.next(); if(i == 5) { Iter.remove(); } } Iter.toFront(); while(Iter.hasNext()) { qDebug() << Iter.next(); } return a.exec(); }
以上是关于QList的主要内容,如果未能解决你的问题,请参考以下文章
QML - 访问存储在 QList 中的 QObject 类属性