标签: c++ for-loop range
是否可以使用/实现一个远程基本循环来为数组分配数字?
我想要的是什么:
for (auto i : X){ i = 1; } //I want this to fill the array with 1.
答案 0 :(得分:5)
是的,请使用参考:
for (auto & i : X){ // ^ i = 1; }