Dev C 中遇到name lookup of 'i' changed for ISO 'for' scoping怎么改正
时间: 2024-05-01 16:19:24 浏览: 286
Characterizing the Torque Lookup Table of an IPM Machine for Automotive
这个错误通常是因为在 C++ 中变量的作用域在 for 循环块中有所不同。你可以尝试将变量的声明放在 for 循环块的外面,或者使用花括号包裹变量的作用域。例如:
```
int i;
for(i=0; i<10; i++)
{
// some code here
}
```
或者
```
{
int i;
for(i=0; i<10; i++)
{
// some code here
}
}
```
这样就能解决这个错误了。
阅读全文