concat(String str)方法, 该方法的参数只能是字符串类型
而+号,可以接受其他类型
public class StringDemo {
public static void main(String[] args) {
String str = "abc";
String s1 = str.concat("123");
System.out.println(s1);
String s2 = str+123;
System.out.println(s2);
}
}
从内部实现的机制来讲,concat()和+同样的
都是通过 StringBuilder(或 StringBuffer)类及其 append 方法实现的。
在循环下性能基本一样垃圾。。。 =。=
使用上也就只是+可以接受的参数多一点而已,但是concat()加个类型转换又是一样了。
这俩其实没啥不一样的=。=