您好,登錄后才能下訂單哦!
這篇文章主要講解了“如何理解java中的String類”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“如何理解java中的String類”吧!
什么是字符串
字符串常見的賦值方法
直接賦值法
字符串的比較相等
字符串常量池
字符串常量池的實例
字符串的不可變
字符串的常見操作
字符串的比較
字符串的查找
字符串替換
split(String regex)
字符串截取
字符串或串(String)是由數字、字母、下劃線組成的一串字符。一般記為 s=“a1a2···an”(n>=0)。它是編程語言中表示文本的數據類型。在程序設計中,字符串(string)為符號或數值的一個連續序列,如符號串(一串字符)或二進制數字串(一串二進制數字)。其在java語言中可以通過一定的方法提取字符串中的一個字符
String 變量名=" 初始值"
這種賦值方法經常被我們使用
public static void main(String[] args) { String str1="hello world"; System.out.println(str1); }
構造方法進行創建
格式:
String 變量名=new String(初始值)
public static void main(String[] args) { String str2=new String("SWPU YYDS"); System.out.println(str2); }
注意:初始值不只局限于常量字符串,也可以是數組
比如字符數組:
public static void main(String[] args) { char ch[]={'S','W','P','U'}; String str3=new String(ch); System.out.println(str3); }
又如字節數組:
public static void main(String[] args) { byte a[]={94,95,94}; String str3=new String(a); System.out.println(str3); }
此外也可以通過這種構造方式把字符數組或者字節數組部分元素轉換為字符串
public static void main(String[] args) { char ch[]={'a','b','c','d','e','f'}; String str4=new String(ch,1,3);//1這個位置是字符串的開始位置,3為字符串的長度 System.out.println(str4); }
在int變量中判斷兩個int變量被賦予的值是否相等使用“==”便可以判斷
public static void main(String[] args) { int a=520; int b=520; System.out.println("a==b:"+(a==b)); }
那么有人就會認為字符串的比較也可以用“==”進行比較
如圖:
public static void main(String[] args) { String str5="abcdef"; String str6="abcdef"; System.out.println("str5和str6是否相等"+(str5==str6)); }
那么字符串是不是就依靠“==”進行判斷的呢?
就如這個代碼:
public static void main(String[] args) { String str8="abcdef"; String str7=new String("abcdef"); System.out.println("str7和str8是否相等"+(str7==str8)); }
public static void main(String[] args) { String str8=new String("abcdef"); String str7=new String("abcdef"); System.out.println("str7和str8是否相等"+(str7==str8)); }
為什么使用"=="會出現這種情況呢?
實際上String 使用 == 比較并不是在比較字符串內容, 而是比較兩個引用是否是指向同一個對象
就比如:這里有兩個籃子分別為A,B;分別里面放相同的5個蘋果,將這兩個籃子看做兩個不同的類A和類B,而這個比較的便是類是否相同,而不是比較類里面的內容是否相同。
為了比較字符串內容是否相等那么我們就得使用String類提供的equals方法
public static void main(String[] args) { String str8="abcdef"; String str7=new String("abcdef"); System.out.println("str7和str8是否相等"+(str7.equals(str8))); }
public static void main(String[] args) { String str8=new String("abcdef"); String str7=new String("abcdef"); System.out.println("str7和str8是否相等"+(str7.equals(str8))); }
在上面所講的字符串賦值操作中
直接賦值為什么使用“==”進行比較有的就是true而有的就是false呢?
實際上當我們采用了直接賦值的模式進行String類的對象實例化操作,那么該實例化對象(字符串內容)將自動保存到字符串常量池之中,并且如果下次繼續使用直接賦值的模式聲明String類對象,此時對象池之中如若有指定內容,將直接進行引用如若沒有,則開辟新的字符串對象而后將其保存在對象池之中以供下次使用。
public static void main5(String[] args) { String str5="abcdef"; String str6="abcdef"; System.out.println("str5和str6是否相等"+(str5==str6)); }
而我們使用構造方法時,首先String類的對象實例化操作時,先在字符常量池中尋找是否有字符串內容,如果有就不需要在放入字符串常量池中,其次在堆上開辟一個內存空間,該空間指向字符串常量池上的內容,而棧上的對象指向新開辟的內存空間
public static void main6(String[] args) { String str8="abcdef"; String str7=new String("abcdef"); System.out.println("str7和str8是否相等"+(str7==str8)); }
注意:在采用直接賦值時,只會開辟一塊堆內存空間,并且該字符串對象可以自動保存在對象池中以供下次使用。在采用構造方法時會開辟兩塊堆內存空間,不會自動保存在對象池中,可以使用intern()方法手工池。
為了更好了解字符串常量池這里有幾個實例可以加以練習
實例一
public static void main(String[] args) { String str1="abcdef"; String str2="abc"+"def"; System.out.println(str1==str2); }
2. 實例二
public static void main(String[] args) { String str1="abcdef"; String str2="abc"; String str3=str2+"def"; System.out.println(str1==str3); }
注意str2是變量,在編譯的時候無法知道里面的值是什么,只有運行到時才知道
3. 實例三
public static void main(String[] args) { String str1="abcdef"; String str2="abc"+new String("def"); System.out.println(str1==str2); }
4. 實例四
public static void main(String[] args) { String str1="abcdef"; String str2=new String("abc")+new String("def"); System.out.println(str1==str2); }
5. 實例五
public static void main(String[] args) { String str1="abc"; String str2=str1; str1="def"; System.out.println(str1==str2); }
字符串是一種不可變對象. 它的內容不可改變.
String 類的內部實現也是基于 char[] 來實現的, 但是 String 類并沒有提供 set 方法之類的來修改內部的字符數組.
如代碼:
public static void main(String[] args) { String str = "hello" ; str = str + " world" ; str += "!!!" ; System.out.println(str); }
那么如果我們需要修改字符串, 例如, 現有字符串 str = “Hello” , 想改成 str = “hello” , 該怎么辦?
最簡單的方法是:借助原字符串,創建新的字符串
public static void main(String[] args) { String str = "Hello"; str = "h" + str.substring(1); System.out.println(str); }
為什么String為不可變?
方便實現字符串對象池. 如果 String 可變, 那么對象池就需要考慮何時深拷貝字符串的問題了。
不可變對象是線程安全的。
不可變對象更方便緩存 hash code, 作為 key 時可以更高效的保存到 HashMap 中。
equals方法
該方法比較字符串的內容并區分字符的大小關系
public static void main(String[] args) { String str="Hello"; String str1="hello"; System.out.println(str.equals(str1)); }
equalsIgnoreCase方法
該方法比較字符串的內容但不區分字符的大小關系
public static void main(String[] args) { String str="Hello"; String str1="hello"; System.out.println(str.equalsIgnoreCase(str1)); }
compareTo方法
在String類中compareTo()方法是一個非常重要的方法,該方法返回一個整型,該數據會根據大小關系返回三類內容:如果相等則返回0;如果小于比較的字符串則返回小于0;相反則返回大于0的值;
public static void main(String[] args) { String str1="Hello"; String str2="hello"; System.out.println(str1.compareTo(str2)); }
public static void main(String[] args) { String str2="Hello"; String str1="hello"; System.out.println(str1.compareTo(str2)); }
public static void main(String[] args) { String str2="hello"; String str1="hello"; System.out.println(str1.compareTo(str2)); }
contains()方法
該方法可以判斷該字符串是否有子串有則返回true;沒有就返回false;
public static void main(String[] args) { String str1="acbaskjcbaskd"; String str2="xass"; System.out.println(str1.contains(str2)); }
public static void main(String[] args) { String str1="acbaskjcbaskd"; String str2="acbaskj"; System.out.println(str1.contains(str2)); }
indexOf()方法
該方法使字符串從頭開始查找需要查找字符串的位置,查到了就返回位置的開始索引,如果沒有檢查到則返回-1。
public static void main(String[] args) { String str1="acbaskjcbaskd"; String str2="askj"; System.out.println(str1.indexOf(str2)); }
public static void main(String[] args) { String str1="acbaskjcbaskd"; String str2="askjsass"; System.out.println(str1.indexOf(str2)); }
lastIndexOf(String str)方法
由后向前查找子字符串
public static void main(String[] args) { String str1="acbaskjcbaskd"; String str2="askj"; System.out.println(str1.lastIndexOf(str2)); }
lastIndexOf(String str,int fromIndex)方法
從指定位置由后向前查找。
public static void main(String[] args) { String str1="acbaskjcbaskd"; String str2="askj"; System.out.println(str1.lastIndexOf(str2,1)); }
public static void main(String[] args) { String str1="acbaskjcbaskd"; String str2="askj"; System.out.println(str1.lastIndexOf(str2,13)); }
startsWith(String prefix)
判斷是否以指定的字符串開頭是則返回true不是則返回false
public static void main(String[] args) { String str1="acbaskjcbaskd"; String str2="askj"; System.out.println(str1.startsWith(str2)); }
public static void main(String[] args) { String str1="acbaskjcbaskd"; String str2="ac"; System.out.println(str1.startsWith(str2)); }
startsWith(String prefix,int toffset)
從指定位置開始判斷是否以指定字符串開頭
public static void main(String[] args) { String str1="acbaskjcbaskd"; String str2="bask"; System.out.println(str1.startsWith(str2,2)); }
endsWith(String suffix)
判斷是否以指定字符串結尾
public static void main(String[] args) { String str1="acbaskjcbaskd"; String str2="bask"; System.out.println(str1.endsWith(str2)); }
public static void main(String[] args) { String str1="acbaskjcbaskd"; String str2="skd"; System.out.println(str1.endsWith(str2)); }
replaceAll(String regx,String replacement)
替換字符串中所有指定的內容
public static void main(String[] args) { String str = "helloworld" ; System.out.println(str.replaceAll("l", "_")); }
replaceFirst(String regx,String replacement)
替換字符串中第一個指定的內容
public static void main(String[] args) { String str = "helloworld" ; System.out.println(str.replaceFirst("l", "_")); }
注意: 由于字符串是不可變對象, 替換不修改當前字符串, 而是產生一個新的字符串.
字符串拆分
將字符串全部拆分
public static void main(String[] args) { String str = "hello world hello swpu" ; String[] result = str.split(" ") ; for(String s: result) { System.out.println(s); } }
注意:有些特別的字符作為分隔符可能無法正確切分需要加上轉義
如:
字符"|","*","+“都得加上轉義字符,前面加上”\".
而如果是".",那么就得寫成"\".
如果一個字符串中有多個分隔符,可以用"|"作為連字符
split(String regex,int limit)
將字符串部分拆分,該數組長度就是limit極限
public static void main(String[] args) { String str = "hello world hello swpu" ; String[] result = str.split(" ",3) ; for(String s: result) { System.out.println(s); } }
substring(int bedinIndex)
從指定索引截止到結尾
public static void main(String[] args) { String str="helloworld"; System.out.println(str.substring(3)); }
substring(int beginIndex,int endIndex)
截取字符串的部分內容
public static void main(String[] args) { String str="helloworld"; System.out.println(str.substring(3,5)); }
注意:該區間為左閉右開則:[3,5)不包含5下標
感謝各位的閱讀,以上就是“如何理解java中的String類”的內容了,經過本文的學習后,相信大家對如何理解java中的String類這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。