您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關如何在java中使用stringbuffer,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
Java中的集合主要分為四類:1、List列表:有序的,可重復的;2、Queue隊列:有序,可重復的;3、Set集合:不可重復;4、Map映射:無序,鍵唯一,值不唯一。
1.概念
StringBuffer又稱為可變字符序列,它是一個類似于 String 的字符串緩沖區,通過某些方法調用可以改變該序列的長度和內容。原來StringBuffer是個字符串的緩沖區,即就是它是一個容器,容器中可以裝很多字符串。并且能夠對其中的字符串進行各種操作。
2.特點
長度可變的。
可以存儲不同類型數據。
最終要轉成字符串進行使用。
可以對字符串進行修改。
3.String、StringBuilder、StringBuffer的區別
從可變性來講String的是不可變的,StringBuilder,StringBuffer的長度是可變的。
從運行速度上來講StringBuilder > StringBuffer > String。
從線程安全上來StringBuilder是線程不安全的,而StringBuffer是線程安全的。
4.實例
public class UsingStringBuffer { /** * 查找匹配字符串 */ public static void testFindStr() { StringBuffer sb = new StringBuffer(); sb.append("This is a StringBuffer"); // 返回子字符串在字符串中最先出現的位置,如果不存在,返回負數 System.out.println("sb.indexOf(\"is\")=" + sb.indexOf("is")); // 給indexOf方法設置參數,指定匹配的起始位置 System.out.println("sb.indexOf(\"is\")=" + sb.indexOf("is", 3)); // 返回子字符串在字符串中最后出現的位置,如果不存在,返回負數 System.out.println("sb.lastIndexOf(\"is\") = " + sb.lastIndexOf("is")); // 給lastIndexOf方法設置參數,指定匹配的結束位置 System.out.println("sb.lastIndexOf(\"is\", 1) = " + sb.lastIndexOf("is", 1)); } /** * 截取字符串 */ public static void testSubStr() { StringBuffer sb = new StringBuffer(); sb.append("This is a StringBuffer"); // 默認的終止位置為字符串的末尾 System.out.print("sb.substring(4)=" + sb.substring(4)); // substring方法截取字符串,可以指定截取的起始位置和終止位置 System.out.print("sb.substring(4,9)=" + sb.substring(4, 9)); } /** * 獲取字符串中某個位置的字符 */ public static void testCharAtStr() { StringBuffer sb = new StringBuffer("This is a StringBuffer"); System.out.println(sb.charAt(sb.length() - 1)); } /** * 添加各種類型的數據到字符串的尾部 */ public static void testAppend() { StringBuffer sb = new StringBuffer("This is a StringBuffer!"); sb.append(1.23f); System.out.println(sb.toString()); } /** * 刪除字符串中的數據 */ public static void testDelete() { StringBuffer sb = new StringBuffer("This is a StringBuffer!"); sb.delete(0, 5); sb.deleteCharAt(sb.length() - 1); System.out.println(sb.toString()); } /** * 向字符串中插入各種類型的數據 */ public static void testInsert() { StringBuffer sb = new StringBuffer("This is a StringBuffer!"); // 能夠在指定位置插入字符、字符數組、字符串以及各種數字和布爾值 sb.insert(2, 'W'); sb.insert(3, new char[] { 'A', 'B', 'C' }); sb.insert(8, "abc"); sb.insert(2, 3); sb.insert(3, 2.3f); sb.insert(6, 3.75d); sb.insert(5, 9843L); sb.insert(2, true); System.out.println("testInsert: " + sb.toString()); } /** * 替換字符串中的某些字符 */ public static void testReplace() { StringBuffer sb = new StringBuffer("This is a StringBuffer!"); // 將字符串中某段字符替換成另一個字符串 sb.replace(10, sb.length(), "Integer"); System.out.println("testReplace: " + sb.toString()); } /** * 將字符串倒序 */ public static void reverseStr() { StringBuffer sb = new StringBuffer("This is a StringBuffer!"); System.out.println(sb.reverse()); // reverse方法將字符串倒序 } }
以上就是如何在java中使用stringbuffer,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。