纯css打造立体时钟
  • 12
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
By_jie

019_增强switch语句

在jdk7新出了增强switch语句、就是可以使用字符串作为表达式结果和case值了。
jdk之前仅限于能自动转化为int类型的byte、short、char、int本身以及枚举。

程序示例:

public class TestSwitch {
    public static void main(String[] args) {
        String  a = "y";
         
        switch (a) {   //JDK7的新特性,表达式结果可以是字符串!!!
        case "x":
            System.out.println("你输入的是x");
            break;
        case "y":
            System.out.println("你输入的是y");
            break;
        default:
            System.out.println("你输入了其它的!");
            break;
        }
    }
}

  输出结果截图:

    

 

posted @ 2018-10-20 14:50  1024军团  阅读(180)  评论(0编辑  收藏  举报