java.lang 包的 String 类表示一组字符。Java 程序中的所有字符串文字,例如“abc”,都实现为此类的实例。示例实时演示public class StringExample { public static void main(String[] args) { String str = new String("Hello how are you"); System.out.println("Contents of the String: "+str); } }输出Hello how are you字符串对象是不可变的,一旦创建字符串对象,就不能更改其值,如果尝试这样做,则不会更改值,而是会创建一个具有所需值的新对象,并且…… 阅读更多