W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
當對字符串進行修改的時候,需要使用 StringBuffer 和 StringBuilder 類。
和String類不同的是,StringBuffer 和 StringBuilder 類的對象能夠被多次的修改,并且不產(chǎn)生新的未使用對象。
StringBuilder 類在 Java 5 中被提出,它和 StringBuffer 之間的最大不同在于 StringBuilder 的方法不是線程安全的(線程安全就是多線程訪問時,采用了加鎖機制,當一個線程訪問該類的某個數(shù)據(jù)時,進行保護,其他線程不能進行訪問直到該線程讀取完,其他線程才可使用。不會出現(xiàn)數(shù)據(jù)不一致或者數(shù)據(jù)污染。線程不安全就是不提供數(shù)據(jù)訪問保護,有可能出現(xiàn)多個線程先后更改數(shù)據(jù)造成所得到的數(shù)據(jù)是臟數(shù)據(jù))。
由于 StringBuilder 相較于 StringBuffer 有速度優(yōu)勢,所以多數(shù)情況下建議使用 StringBuilder 類。然而在應用程序要求線程安全的情況下,則必須使用 StringBuffer 類。
public class Test{
public static void main(String args[]){
StringBuffer sBuffer = new StringBuffer(" test");
sBuffer.append(" String Buffer");
System.out.println(sBuffer);
}
}
以上實例編譯運行結(jié)果如下:
test String Buffer
以下是 StringBuffer 類支持的主要方法:
序號 | 方法描述 |
---|---|
1 | public StringBuffer append(String s) 將指定的字符串追加到此字符序列。 |
2 | public StringBuffer reverse() 將此字符序列用其反轉(zhuǎn)形式取代。 |
3 | public delete(int start, int end) 移除此序列的子字符串中的字符。 |
4 | public insert(int offset, int i) 將 int 參數(shù)的字符串表示形式插入此序列中。 |
5 | replace(int start, int end, String str) 使用給定 String 中的字符替換此序列的子字符串中的字符。 |
下面的列表里的方法和 String 類的方法類似:
序號 | 方法描述 |
1 | int capacity() 返回當前容量。 |
2 | char charAt(int index) 返回此序列中指定索引處的 char 值。 |
3 | void ensureCapacity(int minimumCapacity) 確保容量至少等于指定的最小值。 |
4 | void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin) 將字符從此序列復制到目標字符數(shù)組 dst 。 |
5 | int indexOf(String str) 返回第一次出現(xiàn)的指定子字符串在該字符串中的索引。 |
6 | int indexOf(String str, int fromIndex) 從指定的索引處開始,返回第一次出現(xiàn)的指定子字符串在該字符串中的索引。 |
7 | int lastIndexOf(String str) 返回最右邊出現(xiàn)的指定子字符串在此字符串中的索引。 |
8 | int lastIndexOf(String str, int fromIndex) 返回最后一次出現(xiàn)的指定子字符串在此字符串中的索引。 |
9 | int length() 返回長度(字符數(shù))。 |
10 | void setCharAt(int index, char ch) 將給定索引處的字符設置為 ch 。 |
11 | void setLength(int newLength) 設置字符序列的長度。 |
12 | CharSequence subSequence(int start, int end) 返回一個新的字符序列,該字符序列是此序列的子序列。 |
13 | String substring(int start) 返回一個新的 String ,它包含此字符序列當前所包含的字符子序列。 |
14 | String substring(int start, int end) 返回一個新的 String ,它包含此序列當前所包含的字符子序列。 |
15 | String toString() 返回此序列中數(shù)據(jù)的字符串表示形式。 |
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: