String a = "hello"; System.out.println(a); a = " world!!!"; System.out.println(a);
输出一个是 hello 一个world!!! 为什么说String 是不可变的。
相似问题