C++11 range-based for() loops evaluate once or multiple times?(C++11 基于范围的 for() 循环评估一次还是多次?)
问题描述
鉴于此 C++11 示例代码:
Given this C++11 example code:
for ( const auto &foo : bar() )
{
// ... do something with foo...
}
这个例子中的表达式bar()
是否被标准保证只计算一次?
Is it guaranteed by the standard that the expression bar()
in this example is evaluated only once?
或者它最终会在循环的每次迭代中被调用吗?
Or could it end up being called at every iteration of the loop?
推荐答案
它只被评估一次.标准说基于范围的 for 循环相当于这样:
It is evaluated only once. The standard says that the range-based for loop is equivalent to this:
§6.5.4 基于范围的 for 语句 [stmt.ranged]
§6.5.4 The range-based for statement [stmt.ranged]
{
auto && __range = range-init;
for ( auto __begin = begin-expr,
__end = end-expr;
__begin != __end;
++__begin ) {
for-range-declaration = *__begin;
statement
}
}
with range-init
在您的情况下等效于 ( bar() )
(您指定的表达式,用括号括起来).如您所见,该表达式仅计算一次.
with range-init
being equivalent to ( bar() )
in your case (the expression you specify, surrounded by parenthesis). That expression is only evaluated once as you can see.
这篇关于C++11 基于范围的 for() 循环评估一次还是多次?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C++11 基于范围的 for() 循环评估一次还是多次?
基础教程推荐
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- Windows Media Foundation 录制音频 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01