Java 7 之后 switch 表达式的数据类型可以是 String
public class Main {
public static void main(String[] args) {
switch ("hello") {
case "hello":
System.out.println("hello");
break;
case "world":
System.out.println("world");
break;
default:
break;
}
}
}
网友评论