一个关于String的问题
在字符串中有一个.concat()的方法
这样有系统不报错 但不给我正确的结果
import java.io.*;
public class StringDemoOne
{
public static void main(String args[])
{
String str=new String("wo");
str.concat("shi yi zhi xiao xiao");//不行?不会加到wo的后面。这是从书上看来的。
System.out.println(str);
//而下面这种方式又可以 哪为可以帮我解释一下吗`?
System.out.println("wo".concat("shi yi zhi xiao xiao ").concat("niao"));
}
}