使用標號(使用標號跳出兩層或者多層for循環):
outterLoop:
for
(
int
i =
0
; i <
9
; i++){
for
(
int
j =
0
; j <
8
; j++){
break
outterLoop;
// 跳出外層循環
}
};
white同樣如此