之前,switch支持的类型只有byte、short、char、int、integer、enum枚举类型,在JDK7后,支持string类型。
public void test(String str) {
switch (str) {
case "abc":
System.out.println("abc");
break;
case "def":
System.out.println("def");
break;
case "ghi":
System.out.println("ghi");
break;
default:
System.out.println("default");
}
}