一、java跳出多层循环java
//使用标号 outterLoop: for (int i = 0; i < 9; i++){ for (int j = 0; j < 8; j++){ // …… break outterLoop; // 跳出外层循环 } }