字串拼接+和concat的區別
阿新 • • 發佈:2019-02-02
+和concat都可以用來拼接字串,但在使用上有什麼區別呢,先來看看這個例子。
public static void main(String[] args) {
// example1
String str1 = "s1";
System.out.println(str1 + 100);//s1100
System.out.println(100 + str1);//100s1
String str2 = "s2";
str2 = str2.concat("a").concat("bc");
System.out.println(str2);//s2abc
// example2
String str3 = "s3";
System.out.println(str3 + null);//s3null
System.out.println(null + str3);//nulls3
String str4 = null;
System.out.println(str4.concat("a"));//NullPointerException
System.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面試題,以及前沿熱門資訊等。