String s = hello; s = s + world; 執行後原始的String對象內容是否改變

String s = 「hello」; s = s + 「world」; 執行後原始的String對象內容是否改變? 一 : String s = 「hello」; s = s + 「world」; 執行後原始的String對象內容是否改變? 因爲String是不可改變的類,所以他的所有對象都是不可變的; s 原先指向的對象是內容爲hello的對象,然後進行了+操作,此時會創建一個內容爲world
相關文章
相關標籤/搜索