这一种方式最传统,通过下标来遍历元素。 std::vector<int> v = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; for (size_t i = 0; i < v.size(); ++i) { std::cout << v[i] << std::endl; } 1. 2. 3. 4. 5. 在此也给出C语言中遍历数组的方法: const int v[] = { 1, 2,...
指针遍历 string 传统for循环 范围for循环 迭代器 指针遍历 vector~~ 数组 首先定义一个数组 intarr[5] = {1,0,0,8,6}; 传统for循环 for(inti =0; i <5; i++) { cout <<"arr["<< i <<"]="<< arr[i] << endl; } while循环 inti =0;while(i <5) { cout <<"arr["<< i <<"]...