作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
如果我在循环中有循环,并且一旦满足 if
语句我想打破主循环,我应该怎么做?
这是我的代码:
for (int d = 0; d < amountOfNeighbors; d++) {
for (int c = 0; c < myArray.size(); c++) {
if (graph.isEdge(listOfNeighbors.get(d), c)) {
if (keyFromValue(c).equals(goalWord)) { // Once this is true I want to break main loop.
System.out.println("We got to GOAL! It is "+ keyFromValue(c));
break; // This breaks the second loop, not the main one.
}
}
}
}
最佳答案
使用带标签的中断:
mainloop:
for(){
for(){
if (some condition){
break mainloop;
}
}
}
另见
关于java - 如何在双/嵌套循环中脱离主/外循环?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13073300/
我是一名优秀的程序员,十分优秀!