別樣JAVA學習(八)String下

2021-06-26 10:27:38 字數 1362 閱讀 4788

8、字串練習3

練習三:獲取乙個字串在另乙個字串中出現的次數。

class stringtest

public static int getsubcount(string str,string key)

return count;

} public static void sop(object obj)

}

9、字串練習4

練習四:獲取兩個字串中最大相同子串,

並將短的那個串進行長度依次遞減的子串列印

public static string getmaxsubstring(string s1,string s2)

public static void method_add()//儲存

public static void sop(string str)

}

11、stringbuffer(常見功能-刪除和修改)

2,刪除。

stringbuffer delete(start,end):刪除緩衝區資料,包含start,不包含end。

stringbuffer deletecharat(index):刪除指定位置的字元。

3,獲取。

char charat(int index)

int indexof(string str)

int lastindexof(string str)

int length()

string     substring(int start,int end)

4,修改。

stringbuffer replace(start,end,string)

void setcharat(int index,char ch);

5,反轉

stringbuffer reverse()

6,查閱api

將緩衝區指定資料儲存到指定字元陣列中指定位置。

void getchars(int srcbegin,int srcend, char dst,int dstbegin)

class stringbufferdemo

public static void sop(string str)

}

14、基本資料型別物件包轉類新特性

class integerdemo1

public static void sop(string str)

}

別樣JAVA學習(六)繼承下 2 0 內部類上

前面了解了上帝object類,接下來我們學習內部類,1 內部類 概述 定義 從名字上我們直觀分析,就是乙個類我們直接定義到另乙個類裡面,對裡面那個類就稱為內部類 內建類,巢狀類 好吧,那麼我們現在就寫乙個內部類出來感受一下,class outer void method class innercla...

C 學習筆記(八)string類

學會了string類,自己就不用建字串類了 string類 1 string類是模板類 typedef basic string char string 使用string類要包含標頭檔案 2 string物件的初始化 string s1 hello string s2 8 xs string s3 ...

Java學習筆記之Java的String類

string s0 test string s1 test string s2 te st system.out.println s0 s1 system.out.println s0 s2 執行結果 true true用 操作符建立的字串放在string pool中。當用 操作符建立乙個字串時,j...