1. string.equals():判斷兩個字元物件的內容是否相等;
2. length():求字元或字串的長度。字串長度用length();陣列可以用length;
3. charat():得到字串中某個位置的字元值。索引範圍是從0到length() - 1;
4. getchars():把某位置開始的子串複製到某個陣列中;
5. replace():子串替換用法就是將字串中的某子串替換為另乙個子串;
6. touppercase():小寫轉換為大寫 ;()內可以是string char型別的變數名也可以是「字串」。
7. tolowercase():大寫轉換為小寫; ()內可以是string char型別的變數名也可以是「字串」。
8. trim():消除首尾空格;
9. tochararray():將字元物件轉化為char陣列;
整理string類常見方法的使用說明
整理string類的length charat getchars replace touppercase tolowercase trim tochararray 使用說明 length 可以用來 計算字串的長度 例如 string s new string asdf system.out.prin...
ThreadLocal類使用說明
threadlocal類用於建立乙個執行緒本地變數 在thread中有乙個成員變數threadlocals,該變數的型別是threadlocalmap,也就是乙個map,它的鍵是threadlocal,值為就是變數的副本。通過threadlocal的get 方法可以獲取該執行緒變數的本地副本,在ge...
memset 函式使用說明
sets buffers to a specified character.void memset void dest intc size tcount example memset.c this program uses memset to set the first four bytes of ...