跳轉語句例子break
阿新 • • 發佈:2018-12-21
/*
控制跳轉語句:
break:中斷
continue:繼續
return:返回
break:中斷的意思
使用場景:
A:switch語句中
B:迴圈語句中。
(迴圈語句中加入了if判斷的情況)
注意:離開上面的兩個場景,無意義。
如何使用呢?
A:跳出單層迴圈
B:跳出多層迴圈
要想實現這個效果,就必須知道一個東西。帶標籤的語句。
格式:
標籤名: 語句
*/
class BreakDemo { public static void main(String[] args) { //在 switch 或 loop 外部中斷 //break; //跳出單層迴圈 for(int x=0; x<10; x++) { if(x == 3) { break; } System.out.println("HelloWorld"); } System.out.println("over"); System.out.println("-------------"); wc:for(int x=0; x<3; x++) { nc:for(int y=0; y<4; y++) { if(y == 2) { //break nc; break wc; } System.out.print("*"); } System.out.println(); } } }