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的主要内容,如果未能解决你的问题,请参考以下文章

qt qwt QwtPlotCurves 的 QList

Qt学习总结(C鱼)之QList和QMap容器类

QML - 访问存储在 QList 中的 QObject 类属性

qt 5中qlist

如何使用 QWidget 在 QTabWidget 中包含 QList

qml 使用中继器从 Qlist 绘制折线图