阅读一些基于范围的循环示例,他们提出了两种主要方式1 , 2 , 3 , 4
std::vector<MyClass> vec;
for (auto &x : vec)
{
// x is a reference to an item of vec
// We can change vec's items by changing x
}
或者
for (auto x : vec)
{
// Value of x is copied from an item of vec
// We can not change vec's items by changing x
}
出色地。
当我们不需要更改vec
项目时,IMO,示例建议使用第二个版本(按值)。为什么他们不建议const
参考的东西(至少我没有找到任何直接的建议):
for (auto const &x : vec) // <-- see const keyword
{
// x is a reference to an const item of vec
// We can not change vec's items by changing x
}
不是更好吗?它不是避免在每次迭代中出现冗余副本const
吗?