控制跳转语句:
break:中断
continue:继续
return:返回
break:中断的意思
使用场景:
A:switch语句中 (看之前的文)
B:循环语句中。
(循环语句中加入了if判断的情况)
注意:离开上面的两个场景,无意义。
如何使用呢?
A:跳出单层循环
[代码]java代码:
?
1 2 3 4 5 6 | for(int x=0; x<10; x++) {
if(x == 3) {
break;
}
System.out.println("HelloWorld");
}
|
B:跳出多层循环
要想实现这个效果,就必须知道一个东西。带标签的语句。
格式:
标签名: 语句
[代码]java代码:
?
01 02 03 04 05 06 07 08 09 10 11 12 | public static void main(String[] args)
{
c1:for(int x=0; x<3; x++ ){
c2:for(int y=0;y<4;y++){
if(y == 2){ // 每行只输出2个*,2个*后跳出循环c2,
break c2;
}
System.out.print("*");
}
System.out.println(" ");
}
}
|
原文链接:http://www.apkbus.com/blog-833059-61646.html
打开App,阅读手记