String s1 = "";
String s2 = "\u0000";
String s3 = null;
s1、s2、s3 的区别,分别在字符串常量池和栈中的储存情况?
巴扎黑2017-04-18 10:53:28
從class字節碼的角度來理解吧
1.String s1 = ""的情況,下面是編譯後的字節碼,可以看到,這種情況s1="aaa"其實沒什麼區別的,都是從常數池推一個字串到棧頂,並賦給本地變數。
0: ldc #16 // String
2: astore_1
3: return
2.String s2=null的情況,這個時候,並沒有在常數池中產生任何的字串常數,只是將null推送到棧頂賦值給變數。
0: aconst_null
1: astore_1
2: return
3.String s3 = "u0000"的情況,會在常數池產生一個表示NUL的一個字串,也就是所謂的Control Character。
0: ldc #16 // String NUL
2: astore_1
3: return