📜  遍历数组 c++ 代码示例

📅  最后修改于: 2022-03-11 14:44:45.765000             🧑  作者: Mango

代码示例1
for (int i = 0; i < arr.size(); ++i){
//use if we explicitly need the value of i
cout << i << ":\t" << arr[i] << endl;
}
for (int element : arr){
//modifying element will not affect the array
cout << element << endl;
}
for (int &element : arr){
//modifying element will affect the array
cout << element << endl;
}