String类创 建的两种方式:
public class Strings{
public static void mian(String[] args){
String str="hello wolrd";
String str1=new String("hello world");
System.out.println(str+str1);
}