在VC 6 中,i的作用域范围是函数作用域,在for循环外仍能使用变量i 即:
for (int i = 0; i < n; ++i) {
//……
}
cout<<i<<endl;
这样则编译通过;
for (int i = 0; i < n; ++i) {
//……
}
int i = 5;
这样则编译出错。
在DEV C++ 中,i的作用域仅限于for循环,即:
for (int i = 0; i < n; ++i) {
//……
}
cout<<i<<endl;
这样则编译出错。
for (int i = 0; i < n; ++i) {
//……
}
int i = 5;
这样则编译通过。
同样的在VS中(vs2015)笔者也进行测试,结果同上述在dec中。
————————————————
版权声明:本文为CSDN博主「献世online」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_34611579/article/details/79860516
C++编译错误提示 [Error] name lookup of 'i' changed for ISO '
原文地址:https://www.cnblogs.com/expedition/p/11441388.html
时间: 2024-10-20 17:07:56