Switch能否用string做参数
在jdk 7 之前,switch 只能支持 byte、short、char、int 这几个基本数据类型和其对应的封装类型。switch后面的括号里面只能放int类型的值,但由于byte,short,char类型,它们会 自动 转换为int类型(精精度小的向大的转化),所以它们也支持。
注意,对于精度比int大的类型,比如long、float,doulble,不会自动转换为int,如果想使用,就必须强转为int,如(int)float;
jdk1.7之前,为什么不可以呢?
1 switch (expression) // 括号里是一个表达式,结果是个整数 2 { 3 case constant1: // case 后面的标号,也是个整数 4 group of statements 1; 5 break; 6 case constant2: 7 group of statements 2; 8 break; 9 . 10 . 11 . 12 default: 13 default group of statements 14 }
jdk1.7后,整形,枚举类型,boolean,字符串都可以。
1 public class TestString { 2 3 static String string = "123"; 4 public static void main(String[] args) { 5 switch (string) { 6 case "123": 7 System.out.println("123"); 8 break; 9 case "abc": 10 System.out.println("abc"); 11 break; 12 default: 13 System.out.println("defauls"); 14 break; 15 } 16 } 17 }
jdk1.7并没有新的指令来处理switch string,而是通过调用switch中string.hashCode,将string转换为int从而进行判断。
具体可以参考:http://freish.iteye.com/blog/1152921