Error message: name lookup of ‘jj’ changed for ISO ‘for’ scoping, (if you use ‘-fpermissive’ G++ will accept your code)(错误消息:“jj的名称查找已更改为 ISO“for范围,(如果您使用“-fpermissive,G++ 将接受您的代码))
问题描述
错误是:
In function ‘int returnShortestWeightedBranch(std::vector<route, std::allocator<route> >*)’:
error: name lookup of ‘jj’ changed for ISO ‘for’ scoping
note: (if you use ‘-fpermissive’ G++ will accept your code)
代码是:
for (int i = 0; i< routeVector.size(); i++)
{
if (routeVector[i].exitPoint == exitPointDetailsVector[preserveL].exitPoint)
{
cout << "
-----------parent: " << routeVector[i].exitPoint;
branch obj;
obj.connectedExitPoint = exitPointDetailsVector[preserveI].exitPoint;
routeVector[i].selectedBranchesVector.push_back (obj);
for (int jj = 0; jj < routeVector[i].selectedBranchesVector.size(); jj++);
{
cout << "
-----------branch: " << routeVector[i].selectedBranchesVector[jj].connectedExitPoint;
}
}
}
这里有什么问题?
编辑 1:
我更改了以下内容:
for (int jj = 0; jj < routeVector[i].selectedBranchesVector.size(); jj++);
到:
int jj;
for (jj = 0; jj < routeVector[i].selectedBranchesVector.size(); jj++);
现在它开始工作了!!我不明白原因.
and now it is working!! I fail to understand the REASONS.
推荐答案
在内部 for 语句的末尾有一个分号.jj
的作用域到此结束,所以它在块内不可见.
You have a semicolon at the end of the inner for statement. That ends the scope of jj
there, so it is not visible inside the block.
编辑
你已经解决了范围问题,但你的 for 循环仍然只是执行
Edit
You have solved the scope problem, but still have your for loop executing just
<nothing>;
去掉括号后的分号!
这篇关于错误消息:“jj"的名称查找已更改为 ISO“for"范围,(如果您使用“-fpermissive",G++ 将接受您的代码)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:错误消息:“jj"的名称查找已更改为 ISO“for"范围,(如果您使用“-fpermissive",G++ 将接受您的代码)


基础教程推荐
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 我有静态或动态 boost 库吗? 2021-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 这个宏可以转换成函数吗? 2022-01-01
- 常量变量在标题中不起作用 2021-01-01