Switch用string做引數
阿新 • • 發佈:2018-12-26
在jdk 7 之前,switch 只能支援 byte、short、char、int 這幾個基本資料型別和其對應的封裝型別。switch後面的括號裡面只能放int型別的值,但由於byte,short,char型別,它們會 自動 轉換為int型別(精精度小的向大的轉化),所以它們也支援。
注意,對於精度比int大的型別,比如long、float,doulble,不會自動轉換為int,如果想使用,就必須強轉為int,如(int)float;
jdk1.7之前,為什麼不可以呢?
switch (expression) // 括號裡是一個表示式,結果是個整數 { case constant1: // case 後面的標號,也是個整數 group of statements 1; break; case constant2: group of statements 2; break; . . . default: default group of statements }
jdk1.7後,整形,列舉型別,boolean,字串都可以。
public class TestString { static String string = "123"; public static void main(String[] args) { switch (string) { case "123": System.out.println("123"); break; case "abc": System.out.println("abc"); break; default: System.out.println("defauls"); break; } } }
為什麼jdk1.7後又可以用string型別作為switch引數呢?
其實,jdk1.7並沒有新的指令來處理switch string,而是通過呼叫switch中string.hashCode,將string轉換為int從而進行判斷。