字符串 如 • 当然还可以进行如下定义 String s s= new String( ); 5.1.1 声明String类对象 s • 当然还可以进行如下定义 String s s= new String( ) 创建String类对象 s 为空字符串 5.1.1 声明String类对象 s 如 String s1 = new String(“hello world!”); String s2 = new String(s1); String(String value) 用已知字符串value 创建一个字符串对象 2用初始字符串创建字符串对象 5.1.1 String s2 = new String(s1); 利用已知字 符串S1创建s2 如 String s1 = new String(“hello world!”); 5.1.1 2用初始字符串创建字符串对象 String(String value) String(char chars[]) String s