如何在双循环/嵌套循环中脱离主循环/外循环?

如果我在一个循环中有一个循环,并且一旦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代码中的“循环:”。 这是什么,为什么会编译?
  • 文献资料

以上是 如何在双循环/嵌套循环中脱离主循环/外循环? 的全部内容, 来源链接: utcz.com/qa/399645.html

回到顶部