gpt4 book ai didi

c++ - 转到基于范围的 for 循环中的下一个迭代器

转载 作者:行者123 更新时间:2023-12-01 14:14:58 24 4
gpt4 key购买 nike

对于我的项目,我需要使循环中的迭代器转到容器中的下一个项目,执行一些操作,然后再次返回到同一个迭代器并继续,但是,由于某种原因, advancenext 然后使用 prev 似乎都有效。那么我怎样才能获得下一个迭代器并返回到上一个呢?

我收到以下错误消息:

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::nextstd::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);
}

关于c++ - 转到基于范围的 for 循环中的下一个迭代器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62402451/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com