Java中String類的詳細解析

來源:互聯網
上載者:User
字串廣泛應用在Java編程中,在Java中字串屬於對象,Java 提供了String類來建立和操作字串,本篇文章將詳細為大家介紹String類的內容。

建立字串

建立字串最簡單的方式如下:

String greeting = "php中文網";

在代碼中遇到字串常量時,這裡的值是 "php中文網"",編譯器會使用該值建立一個 String 對象。

和其它對象一樣,可以使用關鍵字和構造方法來建立 String 對象。

String 類有 11 種構造方法,這些方法提供不同的參數來初始化字串,比如提供一個字元數組參數:

StringDemo.java 檔案代碼:

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

以上執行個體編譯運行結果如下:

php

注意:String 類是不可改變的,所以你一旦建立了 String 對象,那它的值就無法改變了(詳看筆記部分解析)。

如果需要對字串做很多修改,那麼應該選擇使用 StringBuffer & StringBuilder 類。

字串長度

用於擷取有關對象的資訊的方法稱為訪問器方法。

String 類的一個訪問器方法是 length() 方法,它返回字串對象包含的字元數。

下面的代碼執行後,len變數等於14:

StringDemo.java 檔案代碼:

public class StringDemo { public static void main(String args[])  {   String site = "www.php.cn";   int len = site.length();   System.out.println( "php中文網網址長度 : " + len );   } }

以上執行個體編譯運行結果如下:

php中文網網址 : 14

連接字串

String 類提供了串連兩個字串的方法:

string1.concat(string2);

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

"我的名字是 ".concat("php");

更常用的是使用'+'操作符來連接字串,如:

"Hello," + " php" + "!"

結果如下:

"Hello, runoob!"

下面是一個例子:

StringDemo.java 檔案代碼:

public class StringDemo { public static void main(String args[])  {   String string1 = "php中文網網址:";    System.out.println("1、" + string1 + "www.php.cn");    } }

以上執行個體編譯運行結果如下:

1、php中文網網址:www.php.cn

建立格式化字串

我們知道輸出格式化數字可以使用 printf() 和 format() 方法。

String 類使用靜態方法 format() 返回一個String 對象而不是 PrintStream 對象。

String 類的靜態方法 format() 能用來建立可複用的格式化字串,而不僅僅是用於一次列印輸出。

如下所示:

System.out.printf("浮點型變數的值為 " + "%f, 整型變數的值為 " + " %d, 字串變數的值為 " + "is %s", floatVar, intVar, stringVar);

你也可以這樣寫

String fs; fs = String.format("浮點型變數的值為 " + "%f, 整型變數的值為 " + " %d, 字串變數的值為 " + " %s", floatVar, intVar, stringVar)

String 方法

下面是 String 類支援的方法,更多詳細,參看 Java String API 文檔:

SN(序號) 方法描述
1 char charAt(int index)
返回指定索引處的 char 值。
2 int compareTo(Object o)
把這個字串和另一個對象比較。
3 int compareTo(String anotherString)
按字典順序比較兩個字串。
4 int compareToIgnoreCase(String str)
按字典順序比較兩個字串,不考慮大小寫。
5 String concat(String str)
將指定字串串連到此字串的結尾。
6 boolean contentEquals(StringBuffer sb)
若且唯若字串與指定的StringBuffer有相同順序的字元時候返回真。
7 static String copyValueOf(char[] data)
返回指定數組中表示該字元序列的 String。
8 static String copyValueOf(char[] data, int offset, int count)
返回指定數組中表示該字元序列的 String。
9 boolean endsWith(String suffix)
測試此字串是否以指定的尾碼結束。
10 boolean equals(Object anObject)
將此字串與指定的對象比較。
11 boolean equalsIgnoreCase(String anotherString)
將此 String 與另一個 String 比較,不考慮大小寫。
12 byte[] getBytes()
使用平台的預設字元集將此 String 編碼為 byte 序列,並將結果儲存到一個新的 byte 數組中。
13 byte[] getBytes(String charsetName)
使用指定的字元集將此 String 編碼為 byte 序列,並將結果儲存到一個新的 byte 數組中。
14 void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
將字元從此字串複製到目標字元數組。
15 int hashCode()
返回此字串的雜湊碼。
16 int indexOf(int ch)
返回指定字元在此字串中第一次出現處的索引。
17 int indexOf(int ch, int fromIndex)
返回在此字串中第一次出現指定字元處的索引,從指定的索引開始搜尋。
18 int indexOf(String str)
返回指定子字串在此字串中第一次出現處的索引。
19 int indexOf(String str, int fromIndex)
返回指定子字串在此字串中第一次出現處的索引,從指定的索引開始。
20 String intern()
返回字串對象的正常化表示形式。
21 int lastIndexOf(int ch)
返回指定字元在此字串中最後一次出現處的索引。
22 int lastIndexOf(int ch, int fromIndex)
返回指定字元在此字串中最後一次出現處的索引,從指定的索引處開始進行反向搜尋。
23 int lastIndexOf(String str)
返回指定子字串在此字串中最右邊出現處的索引。
24 int lastIndexOf(String str, int fromIndex)
返回指定子字串在此字串中最後一次出現處的索引,從指定的索引開始反向搜尋。
25 int length()
返回此字串的長度。
26 boolean matches(String regex)
告知此字串是否匹配給定的Regex。
27 boolean regionMatches(boolean ignoreCase, int toffset, String other, int ooffset, int len)
測試兩個字串地區是否相等。
28 boolean regionMatches(int toffset, String other, int ooffset, int len)
測試兩個字串地區是否相等。
29 String replace(char oldChar, char newChar)
返回一個新的字串,它是通過用 newChar 替換此字串中出現的所有 oldChar 得到的。
30 String replaceAll(String regex, String replacement)
使用給定的 replacement 替換此字串所有匹配給定的Regex的子字串。
31 String replaceFirst(String regex, String replacement)
使用給定的 replacement 替換此字串匹配給定的Regex的第一個子字串。
32 String[] split(String regex)
根據給定Regex的匹配拆分此字串。
33 String[] split(String regex, int limit)
根據匹配給定的Regex來拆分此字串。
34 boolean startsWith(String prefix)
測試此字串是否以指定的首碼開始。
35 boolean startsWith(String prefix, int toffset)
測試此字串從指定索引開始的子字串是否以指定首碼開始。
36 CharSequence subSequence(int beginIndex, int endIndex)
返回一個新的字元序列,它是此序列的一個子序列。
37 String substring(int beginIndex)
返回一個新的字串,它是此字串的一個子字串。
38 String substring(int beginIndex, int endIndex)
返回一個新字串,它是此字串的一個子字串。
39 char[] toCharArray()
將此字串轉換為一個新的字元數組。
40 String toLowerCase()
使用預設語言環境的規則將此 String 中的所有字元都轉換為小寫。
41 String toLowerCase(Locale locale)
使用給定 Locale 的規則將此 String 中的所有字元都轉換為小寫。
42 String toString()
返回此對象本身(它已經是一個字串!)。
43 String toUpperCase()
使用預設語言環境的規則將此 String 中的所有字元都轉換為大寫。
44 String toUpperCase(Locale locale)
使用給定 Locale 的規則將此 String 中的所有字元都轉換為大寫。
45 String trim()
返回字串的副本,忽略前置空白和尾部空白。
46 static String valueOf(primitive data type x)

返回給定data type類型x參數的字串表示形式。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.