67,944
社区成员




public class StringConcat{
public static void main(String[] args)
{
String s0= new String("Hello");
String s1 = "World"+"!";
String s2 = s0.concat(s1);
String s3 = s2.concat(s1);
System.out.println(s2);
System.out.println(s3);
}
}
膜拜大佬!!!