本帖最后由 1021361407 于 2015-3-11 13:09 编辑
- <p>public class a {
- public static void main(String[] args)
- {
- int x=1;
- switch(x)
- {
- case 0:
- System.out.println("0");
-
- case 1:
- System.out.println("1");
-
- case 2:
- System.out.println("2");</p><p>case 3:</p><p>System.out.println("3");</p><p>break;</p><p>case 4:
- System.out.println("4"); </p><p>break;
-
- default:
- break;
- }
- }</p>
复制代码
先看代码,为什么不加Break语句,就会顺序执行而不管是否匹配呢?
|
|