转到基于范围的 for 循环中的下一个迭代器
Go to next iterator in range-based for loop
对于我的项目,我需要使循环中的迭代器转到容器中的下一个项目,执行一些操作,然后 return 再次返回同一个迭代器并继续,但是,对于出于某些原因,advance
和 next
然后使用 prev
似乎都不起作用。那么我怎样才能获得下一个迭代器,而只是 return 到上一个呢?
我收到以下错误消息:
no matching function for call to 'next(int&)'
no type named 'difference_type' in 'struct std::iterator_traits<int>'
谢谢!
template<class T>
void insert_differences(T& container)
{
for(auto it : container){
// do some operations here
//advance(it,1);
it = next(it);
// do some operations here
//advance(it, -1);
it = prev(it);
}
}
Range-based for loop 迭代元素。名称 it
在这里令人困惑;它不是迭代器而是元素,这就是 std::next
和 std::prev
不能使用它的原因。
Executes a for loop over a range.
Used as a more readable equivalent to the traditional for loop
operating over a range of values, such as all elements in a container.
你必须自己使用迭代器编写循环,比如
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);
}
对于我的项目,我需要使循环中的迭代器转到容器中的下一个项目,执行一些操作,然后 return 再次返回同一个迭代器并继续,但是,对于出于某些原因,advance
和 next
然后使用 prev
似乎都不起作用。那么我怎样才能获得下一个迭代器,而只是 return 到上一个呢?
我收到以下错误消息:
no matching function for call to 'next(int&)'
no type named 'difference_type' in 'struct std::iterator_traits<int>'
谢谢!
template<class T>
void insert_differences(T& container)
{
for(auto it : container){
// do some operations here
//advance(it,1);
it = next(it);
// do some operations here
//advance(it, -1);
it = prev(it);
}
}
Range-based for loop 迭代元素。名称 it
在这里令人困惑;它不是迭代器而是元素,这就是 std::next
和 std::prev
不能使用它的原因。
Executes a for loop over a range.
Used as a more readable equivalent to the traditional for loop operating over a range of values, such as all elements in a container.
你必须自己使用迭代器编写循环,比如
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);
}