public class Test {
public static void main(String args[]) {
String[] arr= new String[]{"a", "b", "c"};
lable:
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
//continue lable;
break lable;
}
}
}
}
不能用goto语句。
版权声明:本文为博主原创文章,未经博主允许不得转载。