switch… case 语句的用法



2017-05-13 18:38 
RaoZy 
阅读(229
评论(0
编辑 
收藏 
举报

public class Test7
{
     public static void main(String[] args)
     {
        int i=5;
        switch(i)
        {
              case 1:
               System.out.println(“one”);
              case 10:
               System.out.println(“ten”);
              case 5:
               System.out.println(“five”);   
              case 3:
               System.out.println(“three”);
              default:
               System.out.println(“other”);
        }
    }
}
复制代码
è 结果是:

five
three
other
 
复制代码
switch(表达式)

{

case 常量表达式1:语句1;

….

case 常量表达式2:语句2;

default:语句;

}

版权声明:本文为RAOZHAOYANG原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/RAOZHAOYANG/p/6849876.html