Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个要求,我有不断更新的 QAbstractListModel。QAbstractListModel 的数据类型是整数类型。
我想以特定间隔将整个数据复制到向量中,以便向量不断更新,我可以进一步使用它。
知道如何通过索引迭代 QAbstractListModel 并将其复制到向量中。
快速而肮脏的做法:
QAbstractListModel m; QVector<int> v; const int nbRow = m.rowCount(); v.reserve(nbRow); for (int i = 0; i < nbRow; ++i) { int myInt = m.index(i, 0).data().toInt(); v.append(myInt); }