Qt之容器类
Qt的顺序容器类:QList、QLinkedList、QVector、QStack和QQueue。 1、QList 以数组列表(array-list)形式实现,以下表索引方式对数据项进行访问。 对数据项的操作函数有:#include <QList> insert()、replace()、removeAt()、move()、swap()、append()、prepend()、removeFirst()、removeLast()、at()、begin()、end()、clear()、erase()、count()、size()、length()、push_back()、push_front()、pop_back()、pop_front() 来源: https://www.cnblogs.com/guohao8786/p/10908832.html