如果我执行以下代码:
QList<int> l;
QList<int>::const_iterator lI;
l.append(1);
l.append(2);
l.append(3);
l.append(4);
lI = l.constEnd();
while(lI != l.constBegin()) {
std::cout << *lI << std::endl;
--lI;
}
我得到这个输出:
17
4
3
2
我已经通过使用解决了它QListIterator<int>
,但我真的不明白为什么这不起作用!
提前致谢 ...