字串拼接+和concat的區別

茅坤寶駿氹發表於2018-05-02

轉載自  字串拼接+和concat的區別


+和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的原因。


相關文章