笔试题目:break目前位于内层的for循环,如何才能让break作用于外层 的for循环。可以标记解决
标记的命名只要符合标识符的命名规则即可。
@Test public void test2(){ aaa:for(int j = 0 ; j<3 ; j++) { // j=0 外层for循环 for(int i = 0 ; i< 2 ; i++) { // i=0 内层for循环 System.out.println("spring"); break aaa; } } }
笔试题目:break目前位于内层的for循环,如何才能让break作用于外层 的for循环。可以标记解决
标记的命名只要符合标识符的命名规则即可。
@Test public void test2(){ aaa:for(int j = 0 ; j<3 ; j++) { // j=0 外层for循环 for(int i = 0 ; i< 2 ; i++) { // i=0 内层for循环 System.out.println("spring"); break aaa; } } }