使用基于范围的 for 循环时需要迭代器

Need iterator when using ranged-based for loops(使用基于范围的 for 循环时需要迭代器)
本文介绍了使用基于范围的 for 循环时需要迭代器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

目前,我只能用这个做基于范围的循环:

Currently, I can only do ranged based loops with this:

for (auto& value : values)

但有时我需要一个值的迭代器,而不是引用(无论出于何种原因).有没有什么方法不需要遍历整个向量比较值?

But sometimes I need an iterator to the value, instead of a reference (For whatever reason). Is there any method without having to go through the whole vector comparing values?

推荐答案

使用旧的 for 循环:

for (auto it = values.begin(); it != values.end();  ++it )
{
       auto & value = *it;
       //...
}

有了这个,你就有了 value 和迭代器 it.想用什么就用什么.

With this, you've value as well as iterator it. Use whatever you want to use.

虽然我不推荐这样做,但是如果您想使用基于范围的 for 循环(是的,无论出于何种原因 :D),那么您可以这样做这个:

Although I wouldn't recommended this, but if you want to use range-based for loop (yeah, For whatever reason :D), then you can do this:

 auto it = std::begin(values); //std::begin is a free function in C++11
 for (auto& value : values)
 {
     //Use value or it - whatever you need!
     //...
     ++it; //at the end OR make sure you do this in each iteration
 }

这种方法避免了搜索给定的value,因为valueit 总是同步的.

This approach avoids searching given value, since value and it are always in sync.

这篇关于使用基于范围的 for 循环时需要迭代器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Bring window to front -gt; raise(),show(),activateWindow() don’t work(把窗户放在前面 -raise(),show(),activateWindow() 不起作用)
How to get a list video capture devices NAMES (web cameras) using Qt (crossplatform)? (C++)(如何使用 Qt(跨平台)获取列表视频捕获设备名称(网络摄像机)?(C++))
How to compile Qt as static(如何将 Qt 编译为静态)
C++ over Qt : Controlling transparency of Labels and Buttons(C++ over Qt:控制标签和按钮的透明度)
How to know when a new USB storage device is connected in Qt?(Qt如何知道新的USB存储设备何时连接?)
What is an event loop in Qt?(Qt 中的事件循环是什么?)