stringbuffer的使用方法:
stringbuffer str = new stringbuffer()
stringbuffer str = new stringbuffer("cj");
stringbuffer不能直接轉化成string型別,需要通過對於物件例項化轉化。
stringbuffer轉化為string可使用 string b=a.tostring()
string轉為stringbuffer可使用stringbuffer b=new stringbuffer(string)
方法描述
將指定的字串追加到此字串行
public stringbuffer reverse()
將此字串行用其反轉形式取代
public insert(int offset, int i)
將 int 引數的字串表示形式插入此序列中
replace(int start, int end, string str)
使用給定 string 中的字元替換此序列的子字串中的字元
其他的函式與string類似。
String常用操作,StringBuffer。
string str new string 我們愛學習 string str1 我們不愛學習 system.out.println 計算字串長度 str.length 執行結果 計算字串長度 5 system.out.println 比較兩個字串的內容 str.equals str1 執行結果 比較...
Java中equalsIgnoreCase的用法
equalsignorecase public boolean equalsignorecase string anotherstring 將此 string 與另乙個 string 進行比較,不考慮大小寫。如果兩個字串的長度相等,並且兩個字串中的相應字元都相等 忽略大小寫 則認為這兩個字串是相等的...
Java筆記 Java 中 this 用法小結
據我所知,this有三個用途,但this都表示當前物件自身。一 訪問當前物件的資料域 public class testthis public testthis int age 當構造方法傳入的變數的變數名和當前物件資料域中的變數名一樣時,可以使用 this 來訪問當前物件資料域的變數。二 呼叫當前...