标签: java string concat
据我所知,我知道我可以这样使用concat():
concat()
String str = "to"; System.out.println(str.concat("gether")
返回together。 但这不就像说str + "gether"吗?
together
str + "gether"
为什么只要使用+加入Strings就可以为它制作方法?
+
Strings
它是否可用于任何其他目的?