new String 到底創建了幾個對象!

String str1 = "hello"; // 創建了一個對象 String str2 = new String("hello"); // 若常量池中已有 hello 則只會在堆中創建一個對象 若常量池中沒有 hello 則會在堆中創建一個對象 在常量池中創見一個對象 例如 :String str2 = new String("hell"); // 接着以上的代碼 此處 創建了倆個對象 Str
相關文章
相關標籤/搜索