package com.tedu.string;
/** * trim()
* 方法功能是去掉當前字串倆邊的空格
* @author wildmess
* */
public
class
trimdeno
}
package com.tedu.string;
/** * charat(int index)
* 返回指定索引位置的字元,返回的是個char型別資料
* @author wildmess
* */
public
class
charatdemo}if
(b)else
}}
package com.tedu.string;
/** * boolean startswith(string str)
* boolaen endswith(string str)
* 判斷當前字串是否以給定的字串開始或結束
* * @author wildmess
* */
public
class
startwithdemo
}
package com.tedu.string;
/** * string touppercase()
* string tolowercase()
* 把當前字串中的英文本母轉換為全大寫或全小寫
* @author wildmess
* */
public
class
touppercasedemo
}
package com.tedu.string;
/** * string.valueof(..) string類的靜態方法
* 將指定的基本資料型別的值轉換為string型別的物件內容
* @author wildmess
* */
public
class
valueofdemo
}
筆記 3 String中常見API的使用 一
package com.tedu.string length 返回當前字串物件中字元的個數,實際上就是char型別陣列的長度 author wildmess public class strlengthdemo package com.tedu.string indexof string str 查...
3 string 和 String的區別
1 string型別是密封 sealed 型別,即從object物件中繼承而來。2 string例項實際就是乙個unicode字串 3 string型別的值可以是字串文字 4 string關鍵字是預定義類system.string的別名,所以我們可以這樣寫 string name fred or s...
String 類的實現(3)String類常用函式
1 2 include3 include4 include5 include 6 using namespace std 自己模擬實現的部分相關c string庫函式 8int my strlen const char p 9 17return count 18 19char my strcopy ...