當前位置:成語大全網 - 書法字典 - 請詳細說明java中append()的方法。

請詳細說明java中append()的方法。

Java中的append()方法實際上創建了壹個新數組,擴展了它的長度,並將要添加的字符串復制到這個新數組中。

JAVA中的Stringbuffer具有append()方法:

而Stringbuffer是壹個動態字符串數組,在動態字符串數組中加入append(),相當於“xxxx”+“yyyy”。

與String不同,Stringbuffer是放在壹起的。String1+String2和StringBuffer1。append(“yyyy”)具有相同的打印效果,但它們在內存方面有所不同。

String1+String2存在於兩個不同的地址存儲器和字符串緩沖區1中。Append(字符串緩沖區2)放在壹起。

StringBuffer是線程安全的,主要用於多線程。

擴展數據

看看StringBuffer的append()方法。

如圖代碼所示:

1,輸入追加方法。

@覆蓋

公共同步字符串緩沖區追加(字符串str ){

toStringCache = null

super . append(str);

還這個;

}

其中在修改字符串緩沖區時清除toStringCache。

2.輸入AbstractStringBuilder的append()方法。

公共AbstractStringBuilder追加(字符串str ){

if(str = = null)

return appendNull();

int len = str . length();

ensureCapacityInternal(count+len);

str . getchars(0、len、value、count);

count+= len;

還這個;

}

如果參數str為空,則返回appendNull();這個方法最終返回。

3.輸入ensureCapacityInternal()方法。

private void ensurecapacity internal(int minimum capacity ){

//溢出意識代碼

if(minimum capacity-value . length & gt;0) {

value = arrays . copy of(value,

new capacity(minimum capacity);

}

}

可以在JDK幫助文檔中找到copy of(char【】original,int new length ):用指定的長度復制指定的數組。

4.輸入字符串的getChars()方法。

public void getChars(int src begin,int srcEnd,char dst【】,int dst begin){//0,len=5,value =【hello】,count=5

if(src begin & lt;0) {

throw new StringIndexOutOfBoundsException(src begin);

}

if(src end & gt;值。長度){

拋出新的StringIndexOutOfBoundsException(src end);

}

if(src begin & gt;src end ){

throw new StringIndexOutOfBoundsException(src end-src begin);

}

system . array copy(value,srcBegin,dst,dstBegin,src end-srcBegin);

}

5.最後調用System.arraycopy的方法:

公共靜態void arraycopy(對象src,

int srcPos,

目標對象,

int destPos,

int長度)

/* src-源數組。

源數組中的開始位置。

目標數組。

dest pos-目標數據的起始位置。

length-要復制的數組元素的數量。?

*/

system . array copy(【world】,0,【hello】,5,5);

將指定源數組中的數組從指定位置復制到目標數組的指定位置。

參考資料:

百度百科-追加