首页 > 其他 > 详细

switch

时间:2016-01-03 22:21:04      阅读:190      评论:0      收藏:0      [点我收藏+]
 1 package com.cn;
 2 
 3 public class Test {
 4     public static void main(String agrs[]){
 5         int x = 1;
 6         switch(x){
 7             case 1 : 
 8                 System.out.println("1");
 9             case 2 :
10                 System.out.println("2");
11             default :
12                 System.out.println("others");
13         }
14     }
15 }

输出结果:

1
2
others

package com.cn;

public class Test {
    public static void main(String agrs[]){
        int x = 2;
        switch(x){
            case 1 : 
                System.out.println("1");
            case 2 :
                System.out.println("2");
            default :
                System.out.println("others");
        }
    }
}

输出结果:

2
others

 1 package com.cn;
 2 
 3 public class Test {
 4     public static void main(String agrs[]){
 5         int x = 2;
 6         switch(x){
 7             case 1 : 
 8                 System.out.println("1");
 9                 break;
10             case 2 :
11                 System.out.println("2");
12                 break;
13             default :
14                 System.out.println("others");
15         }
16     }
17 }

输出结果:

2

 1 package com.cn;
 2 
 3 public class Test {
 4     public static void main(String agrs[]){
 5         int x = 2;
 6         switch(x){
 7             case 1 : 
 8                 System.out.println("1");
 9                 break;
10             case 2 :
11             case 3 :
12                 System.out.println("2");
13                 break;
14             default :
15                 System.out.println("others");
16         }
17     }
18 }

输出结果:

2

switch

原文:http://www.cnblogs.com/lzy1991/p/5097301.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!