JDK7的新特性——switch语句可以用字符串语句
Posted zbgghost
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JDK7的新特性——switch语句可以用字符串语句相关的知识,希望对你有一定的参考价值。
1 //jdk7.0中switch可以使用字符串做条件 2 public class TestSwitch02 { 3 public static void main(String[] args){ 4 String a = "向良峰"; 5 6 switch(a){//JDK 7的新特性,表达式可以是字符串! 7 case "哔哩哔哩": 8 System.out.println("输入的是哔哩哔哩"); 9 break; 10 case "斩妹之瞳": 11 System.out.println("input is red eye"); 12 break; 13 case "向良峰": 14 System.out.println("输入的是XLF"); 15 break; 16 default: 17 System.out.println("hello everyone"); 18 break; 19 20 21 } 22 23 24 } 25 26 }
以上是关于JDK7的新特性——switch语句可以用字符串语句的主要内容,如果未能解决你的问题,请参考以下文章