String 一旦被賦值,就不能改變 原理

/** * 字符串的特點:一旦被賦值,就不能改變。 */ public class StringNotChange { public static void main(String[] args) { String s = "hello"; s += "world"; System.out.println("s:" + s); // hell
相關文章
相關標籤/搜索