标签:循环 code 遍历 创建 修改 无法 表达 pre ons
for(auto x : range)
创建拷贝,无法修改range中的元素
for(auto& x : range)
for(auto&& x : range)
for(const auto & x : range)
C++ 遍历循环表达示 auto, auto&, auto&&
标签:循环 code 遍历 创建 修改 无法 表达 pre ons
原文地址:https://www.cnblogs.com/yaos/p/12094304.html