67,946
社区成员
发帖
与我相关
我的任务
分享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);
}
}
膜拜大佬!!!