String類學習筆記

1.String 類是不可改變的解析,例如: String s = "Google"; System.out.println("s = " + s); s = "Runoob"; System.out.println("s = " + s); 輸出結果爲: Google Runoob 從結果上看是改變了,但爲什麼門說String對象是不可變的呢? 原因在於實例中的 s 只是一個 String 對
相關文章
相關標籤/搜索