Qt之容器类
Posted guohao8786
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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()
以上是关于Qt之容器类的主要内容,如果未能解决你的问题,请参考以下文章
QT QMainWindow窗口中添加 QWidget容器类 应该怎么添加?
Python Qt GUI设计:QTabWidgetQStackedWidget和QDockWidget容器控件类(提升篇—2)