对于我的项目,我需要使循环中的迭代器转到容器中的下一个项目,执行一些操作,然后再次返回同一迭代器,然后继续执行,但是由于某种原因,{{1 }}或advance
,然后再使用next
似乎可行。那么,如何获得下一个迭代器并返回上一个迭代器?
我收到以下错误消息:
prev
谢谢!
no matching function for call to 'next(int&)'
no type named 'difference_type' in 'struct std::iterator_traits<int>'
答案 0 :(得分:6)
Range-based for loop遍历元素。名称it
在这里令人困惑;这不是迭代器,而是元素,这就是std::next
和std::prev
不能使用它的原因。
在一定范围内执行for循环。
用作与传统的for循环更具可读性的等效项 在一系列值上进行操作,例如容器中的所有元素。
您必须像这样使用迭代器自己编写循环
for(auto it = std::begin(container); it != std::end(container); it++){
// do some operations here
//advance(it,1);
it = next(it);
// do some operations here
//advance(it, -1);
it = prev(it);
}