一、java跳出多層循環java
//使用標號 outterLoop: for (int i = 0; i < 9; i++){ for (int j = 0; j < 8; j++){ // …… break outterLoop; // 跳出外層循環 } }