首頁
返回
繼續
最後一頁
摘要
圖形
字串的相關函數
String astr="This is a test!";
字串長度:astr.length();
取出第i個字元:astr.charAt(i);
拷貝字串:astr.getChars(scrBegin,SceEnd,char dest[],destBegin);
字串尋找:indexOf(); 參考10.3
字串比較:compareTo(),compareToIgnoreCase(),equals();