4
C ++ 11基于范围的循环:通过值或引用const获取项目
读取基于范围环的一些例子他们建议两种主要方式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 …