+和concat都可以用来拼接字符串,但在使用上有什么区别呢,先来看看这个例子。
public static void main(String[] args) {// example1String str1 = "s1";System.out.println(str1 + 100);//s1100System.out.println(100 + str1);//100s1String str2 = "s2";str2 = str2.concat("a").concat("bc");System.out.println(str2);//s2abc// example2String str3 = "s3";System.out.println(str3 + null);//s3nullSystem.out.println(null + str3);//nulls3String str4 = null;System.out.println(str4.concat("a"));//NullPointerExceptionSystem.out.println("a".concat(str4));//NullPointerException
}
concat源码:
public String concat(String str) {int otherLen = str.length();if (otherLen == 0) {return this;}int len = value.length;char buf[] = Arrays.copyOf(value, len + otherLen);str.getChars(buf, len);return new String(buf, true);
}
看下生成的字节码:
所以可以得出以下结论:
- +可以是字符串或者数字及其他基本类型数据,而concat只能接收字符串。
- +左右可以为null,concat为会空指针。
- 如果拼接空字符串,concat会稍快,在速度上两者可以忽略不计,如果拼接更多字符串建议用StringBuilder。
- 从字节码来看+号编译后就是使用了StringBuiler来拼接,所以一行+++的语句就会创建一个StringBuilder,多条+++语句就会创建多个,所以为什么建议用StringBuilder的原因。
更多Java好文请关注Java技术栈微信公众号,在公众号后台回复关键字:java,以下仅为部分预览。
- 出场率比较高的一道多线程安全面试题
- Java类初始化顺序,大神3个示例带你躺坑
- switch case 支持的 6 种数据类型!
- 面试常考:Synchronized 有几种用法?
- Hashtable 为什么不叫 HashTable?
本文原创首发于微信公众号:Java技术栈(id:javastack),转载请原样保留本信息。