java String於常量池中的介紹
阿新 • • 發佈:2018-12-03
常量池 :
在編譯期被確定,並被儲存在已編譯的.class檔案中的一些資料:
它包括了關於類、方法、介面等中的常量,也包括字串常量
**********************************************************************
用new String()建立的字串不是常量,不能在編譯期就確定
所以new String()建立的字串不放入常量池中,它們有自己的地址空間
再補充介紹一點:
存在於.class檔案中的常量池,在執行期被JVM裝載,並且可以擴充。
String的 intern() 方法就是擴充常量池的一個 方法:
當一個String例項str呼叫 intern() 方法時,Java查詢常量池中是否有相同Unicode的字串常量,
如果有,則返回其的引用, 如果沒有,則在常量池中增加一個Unicode等於str的字串並返回它的引用;
public static void main(String[] args) { /* Java會確保一個字串常量只有一個拷貝 */ String s1 = "hello"; String s2 = "hello"; // s2 == s1 String s3 = "he" + "llo"; // s3 == s1 == s2 String s6 = s2 + s3 ; // s6 != s1 編譯時沒計算出來 String s4 = new String("hello"); // s4 != s1 String s5 = new String(s4); // s5 != s4 // s4.intern()返回的是常量池中"hello"的引用 System.out.println( s4.intern() == s1 ); } true
- 使用equals方法比較兩個相同的StringBuffer物件
StringBuffer s0=new StringBuffer("hello");
StringBuffer s1=new StringBuffer("hello");
System.out.println( s0 == sb1 );
System.out.println( s0.equals(s1) );
System.out.println( s0.toString().equals( s1.toString() ) );
false
false
true
StringBuffer 類沒有重寫Object類下的equals方法
所以實質還是==比較,所以如果需要比較兩個StringBuffer物件是否相等則toString()方法轉為String。