(Java)使用`concat()`有什么意义?

时间:2015-08-25 15:10:21

标签: java string concat

据我所知,我知道我可以这样使用concat()

String str = "to";
System.out.println(str.concat("gether")

返回together。 但这不就像说str + "gether"吗?

为什么只要使用+加入Strings就可以为它制作方法?

它是否可用于任何其他目的?

0 个答案:

没有答案