java中Switch(expr)里面的参数的类型是?
程序员文章站
2024-03-22 22:08:58
...
在Java5以前,switch(expr)中,exper只能是byte,short,char,int类型
在JDK1.6:引入enum
JDK1.7时:又增加了String
public static void main(String[] args) {
switch ("123") {
case "123":
System.out.println("1234");
break;
default:
break;
}
}
下一篇: Python代码实现计算一年有多少秒