使用标号(使用标号跳出两层或者多层for循环):
outterLoop:
for
(
int
i =
0
; i <
9
; i++){
for
(
int
j =
0
; j <
8
; j++){
break
outterLoop;
// 跳出外层循环
}
};
white同样如此