前兩天去網新恒天面試,第一道題是關於sting 物件==和equals的,我竟然全部記錯了反了過來,今天筆試恆生電子又碰到string 字串操作的,索性全部總結一下以防自己忘掉
一,string 建立物件用==和equals的區別
public class stringtest //true
二,string 類中關於字元的常用操作
1.compareto();
string s5="a";
string s6="a";
int result=s5.compareto(s6);//按字典順序比較兩個字串比較asciic碼
/**a對應65 b->66 c->67 以此類推
* a 對應97 b-->98 c-->99 以此類推
*/system.out.println(result);//result=-32
2.charat();
system.out.println(s5.charat(0));//charat()返回指定索引處的char值
3.concat()
string str=s5.concat(s6);//concat() 將指定字串新增到字串末尾
string類的總結
一.string類標頭檔案 include using namespace std 二.string類方法 1.獲取string的字串長度 size size返回的字串的長度不帶 0 2.獲取指定位置的子字串 substr 第乙個引數是索引位置,第二個引數是子字串的長度 在字串的末尾新增以迭代器st...
String框架提供的一些工具類
在專案中使用spring框架時,我們可以使用一下string的一些工具類來輔助我們的開發。servletrequestutils 1 所在包 package org.springframework.web.bind 2 使用 在controller中手動獲取頁面引數時,可以借助此類,如 平常獲取 s...
String 類的方法總結
string類中方法可以劃分為 獲取方法 int length 獲取字串的長度 char charat int index 根據給定的角標獲取字串中對應角標下的字元 int indexof int ch 根據給定的字元獲取字元在字串第一次出現角標 int indexof string str 根據給...