Java String類(lèi)

2022-01-25 13:54 更新

字符串廣泛應(yīng)用在Java編程中,在Java中字符串屬于對(duì)象,Java提供了String類(lèi)來(lái)創(chuàng)建和操作字符串。


創(chuàng)建字符串

創(chuàng)建字符串最簡(jiǎn)單的方式如下:

String greeting = "Hello world!";

在代碼中遇到字符串常量時(shí),這里的值是 "Hello world!" ,編譯器會(huì)使用該值創(chuàng)建一個(gè) String 對(duì)象。

和其它對(duì)象一樣,可以使用關(guān)鍵字和構(gòu)造方法來(lái)創(chuàng)建String對(duì)象。

String 類(lèi)有 11 種構(gòu)造方法,這些方法提供不同的參數(shù)來(lái)初始化字符串,比如提供一個(gè)字符數(shù)組參數(shù):

public class StringDemo{

   public static void main(String args[]){
      char[] helloArray = { 'h', 'e', 'l', 'l', 'o', '.'};
      String helloString = new String(helloArray);  
      System.out.println( helloString );
   }
}

以上實(shí)例編譯運(yùn)行結(jié)果如下:

hello.

注意:String 類(lèi)是不可改變的,所以你一旦創(chuàng)建了 String 對(duì)象,那它的值就無(wú)法改變了。 如果需要對(duì)字符串做很多修改,那么應(yīng)該選擇使用 StringBuffer & StringBuilder 類(lèi)。


字符串長(zhǎng)度

用于獲取有關(guān)對(duì)象的信息的方法稱(chēng)為訪(fǎng)問(wèn)器方法。

String 類(lèi)的一個(gè)訪(fǎng)問(wèn)器方法是 length() 方法,它返回字符串對(duì)象包含的字符數(shù)。

下面的代碼執(zhí)行后,len 變量等于 17:

public class StringDemo {

   public static void main(String args[]) {
      String palindrome = "Dot saw I was Tod";
      int len = palindrome.length();
      System.out.println( "String Length is : " + len );
   }
}

以上實(shí)例編譯運(yùn)行結(jié)果如下:

String Length is : 17

連接字符串

String 類(lèi)提供了連接兩個(gè)字符串的方法:

string1.concat(string2);

返回 string2 連接 string1 的新字符串。也可以對(duì)字符串常量使用 concat() 方法,如:

"My name is ".concat("Zara");

更常用的是使用'+'操作符來(lái)連接字符串,如:

"Hello," + " world" + "!"

結(jié)果如下:

"Hello, world!"

下面是一個(gè)例子:

public class StringDemo {
   public static void main(String args[]) {     
      String string1 = "saw I was ";     
      System.out.println("Dot " + string1 + "Tod");  
   }
}

以上實(shí)例編譯運(yùn)行結(jié)果如下:

Dot saw I was Tod

創(chuàng)建格式化字符串

我們知道輸出格式化數(shù)字可以使用 printf() 和 format() 方法。String 類(lèi)使用靜態(tài)方法 format() 返回一個(gè) String 對(duì)象而不是 PrintStream 對(duì)象。

String 類(lèi)的靜態(tài)方法 format() 能用來(lái)創(chuàng)建可復(fù)用的格式化字符串,而不僅僅是用于一次打印輸出。如下所示:

System.out.printf("The value of the float variable is " +
                  "%f, while the value of the integer " +
                  "variable is %d, and the string " +
                  "is %s", floatVar, intVar, stringVar);

你也可以這樣寫(xiě)

String fs;
fs = String.format("The value of the float variable is " +
                   "%f, while the value of the integer " +
                   "variable is %d, and the string " +
                   "is %s", floatVar, intVar, stringVar);
System.out.println(fs);

String 方法

下面是 String 類(lèi)支持的常用方法,更多詳細(xì),參看 Java API 文檔:

SN(序號(hào)) 方法描述
1 char charAt(int index)
返回指定索引處的 char 值。
2 int compareTo(Object o)
把這個(gè)字符串和另一個(gè)對(duì)象比較。
3 int compareTo(String anotherString)
按字典順序比較兩個(gè)字符串。
4 int compareToIgnoreCase(String str)
按字典順序比較兩個(gè)字符串,不考慮大小寫(xiě)。
5 String concat(String str)
將指定字符串連接到此字符串的結(jié)尾。
6 boolean contentEquals(StringBuffer sb)
當(dāng)且僅當(dāng)字符串與指定的StringButter有相同順序的字符時(shí)候返回真。
7 static String copyValueOf(char[] data)
返回指定數(shù)組中表示該字符序列的 String。
8 static String copyValueOf(char[] data, int offset, int count)
返回指定數(shù)組中表示該字符序列的 String。
9 boolean endsWith(String suffix)
測(cè)試此字符串是否以指定的后綴結(jié)束。
10 boolean equals(Object anObject)
將此字符串與指定的對(duì)象比較。
11 boolean equalsIgnoreCase(String anotherString)
將此 String 與另一個(gè) String 比較,不考慮大小寫(xiě)。
12 byte[] getBytes()
 使用平臺(tái)的默認(rèn)字符集將此 String 編碼為 byte 序列,并將結(jié)果存儲(chǔ)到一個(gè)新的 byte 數(shù)組中。
13 byte[] getBytes(String charsetName)
使用指定的字符集將此 String 編碼為 byte 序列,并將結(jié)果存儲(chǔ)到一個(gè)新的 byte 數(shù)組中。
14 void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin) 將字符從此字符串復(fù)制到目標(biāo)字符數(shù)組。
15 int hashCode()
返回此字符串的哈希碼。
16 int indexOf(int ch)
返回指定字符在此字符串中第一次出現(xiàn)處的索引。
17 int indexOf(int ch, int fromIndex)
返回在此字符串中第一次出現(xiàn)指定字符處的索引,從指定的索引開(kāi)始搜索。
18 int indexOf(String str)
 返回指定子字符串在此字符串中第一次出現(xiàn)處的索引。
19 int indexOf(String str, int fromIndex)
返回指定子字符串在此字符串中第一次出現(xiàn)處的索引,從指定的索引開(kāi)始。
20 String intern()
 返回字符串對(duì)象的規(guī)范化表示形式。
21 int lastIndexOf(int ch)
 返回指定字符在此字符串中最后一次出現(xiàn)處的索引。
22 int lastIndexOf(int ch, int fromIndex)
返回指定字符在此字符串中最后一次出現(xiàn)處的索引,從指定的索引處開(kāi)始進(jìn)行反向搜索。
23 int lastIndexOf(String str)
返回指定子字符串在此字符串中最右邊出現(xiàn)處的索引。
24 int lastIndexOf(String str, int fromIndex)
 返回指定子字符串在此字符串中最后一次出現(xiàn)處的索引,從指定的索引開(kāi)始反向搜索。
25 int length()
返回此字符串的長(zhǎng)度。
26 boolean matches(String regex)
告知此字符串是否匹配給定的正則表達(dá)式。
27 boolean regionMatches(boolean ignoreCase, int toffset, String other, int ooffset, int len)
測(cè)試兩個(gè)字符串區(qū)域是否相等。
28 boolean regionMatches(int toffset, String other, int ooffset, int len)
測(cè)試兩個(gè)字符串區(qū)域是否相等。
29 String replace(char oldChar, char newChar)
返回一個(gè)新的字符串,它是通過(guò)用 newChar 替換此字符串中出現(xiàn)的所有 oldChar 得到的。
30 String replaceAll(String regex, String replacement
使用給定的 replacement 替換此字符串所有匹配給定的正則表達(dá)式的子字符串。
31 String replaceFirst(String regex, String replacement)
 使用給定的 replacement 替換此字符串匹配給定的正則表達(dá)式的第一個(gè)子字符串。
32 String[] split(String regex)
根據(jù)給定正則表達(dá)式的匹配拆分此字符串。
33 String[] split(String regex, int limit)
根據(jù)匹配給定的正則表達(dá)式來(lái)拆分此字符串。
34 boolean startsWith(String prefix)
測(cè)試此字符串是否以指定的前綴開(kāi)始。
35 boolean startsWith(String prefix, int toffset)
測(cè)試此字符串從指定索引開(kāi)始的子字符串是否以指定前綴開(kāi)始。
36 CharSequence subSequence(int beginIndex, int endIndex)
 返回一個(gè)新的字符序列,它是此序列的一個(gè)子序列。
37 String substring(int beginIndex)
返回一個(gè)新的字符串,它是此字符串的一個(gè)子字符串。
38 String substring(int beginIndex, int endIndex)
返回一個(gè)新字符串,它是此字符串的一個(gè)子字符串。
39 char[] toCharArray()
將此字符串轉(zhuǎn)換為一個(gè)新的字符數(shù)組。
40 String toLowerCase()
使用默認(rèn)語(yǔ)言環(huán)境的規(guī)則將此 String 中的所有字符都轉(zhuǎn)換為小寫(xiě)。
41 String toLowerCase(Locale locale)
 使用給定 Locale 的規(guī)則將此 String 中的所有字符都轉(zhuǎn)換為小寫(xiě)。
42 String toString()
 返回此對(duì)象本身(它已經(jīng)是一個(gè)字符串?。?。
43 String toUpperCase()
使用默認(rèn)語(yǔ)言環(huán)境的規(guī)則將此 String 中的所有字符都轉(zhuǎn)換為大寫(xiě)。
44 String toUpperCase(Locale locale)
使用給定 Locale 的規(guī)則將此 String 中的所有字符都轉(zhuǎn)換為大寫(xiě)。
45 String trim()
返回字符串的副本,忽略前導(dǎo)空白和尾部空白。
46 static String valueOf(primitive data type x)
返回給定data type類(lèi)型x參數(shù)的字符串表示形式。


以上內(nèi)容是否對(duì)您有幫助:
在線(xiàn)筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)