原文
范围 for(range for)语句
这种语句遍历给定序列中每个元素,并对序列中每个值执行某种操作,其语法形式是:
for (declaration : expression)
statement
其中,expression 部分是一个对象,用于表示一个序列。declaration 部分负责定义一个变量,该变量用于访问序列中的基础元素。每次迭代,declaration 部分的变量都会被初始化为 expression 部分的下一个元素值。
示例:
string str ("some string");
// 每行输出 str 中的一个字符。
for (auto c : str) // 对于 str 中的每个字符
cout << c << endl; // 输出当前字符,后面紧跟一个换行符
个人补充
1. 循环内可以用更复杂的语句,范围 for 也可以用普通的 for 循环或 for each 循环完全代替:
string str ("some string");
for (auto c : str)
{
c = toupper(c);
if(c == 'S')
c -= 32;
cout << c;
}
2. auto 类型改为自己指定的类型,但是要注意类型转化:
int b[2]{ 38,65 };
for (char a : b)
cout << c; //输出'&'和'A'
3. 只能操作一维数组,或一维数组类型的数据,否则会产生意想不到的后果:
多维数组:
int b[3][3]{...} //错误,(E0144)"int *" 类型的值不能用于初始化 "int" 类型的实体
for (int a : b){...}
int b[3][3]{...} //正确,但这里 auto 自动取 int*,所以 a 是地址
for (auto a : b){...}
对象数组:
class {...} b[3]; //正确
for (auto a : b){...}
*枚举类型:
enum {...}b[3]; //警告,(C26812)枚举类型“...”未设定范围。相比于 "enum",首选 "enum class" (Enum.3)
for (auto a : b){...}
enum class C { A, B, C }b[3]; //正确
for (auto a : b){...}
弹性数组指针:
int* b{nullptr}; //错误,(E2291)此基于范围的“for”语句需要适合的 "begin" 函数,但未找到
int c[5]{...};
b = c;
for (auto a : b){...}
参考书目
[1] C++ Primer 第5版
扑克桑 发布了1 篇原创文章 · 获赞 0 · 访问量 56 私信 关注