String類的常用方法(上)

2021-07-22 16:20:55 字數 1374 閱讀 4106

本篇文章是我在學習過程中整理的,分享出來希望與大家相互學習。

string類代表字串。

字串是常量;它們的值在建立之後不能更改。字串緩衝區支援可變的字串。因為 string 物件是不可變的,所以可以共享。例如:string str = "abc";

public int compareto(string anotherstring)

按字典順序比較兩個字串。該比較基於字串中各個字元的 unicode 值。

按字典順序將此 string 物件表示的字串行與引數字串所表示的字串行進行比較。

如果按字典順序此 string 物件位於引數字串之前,則比較結果為乙個負整數。

如果按字典順序此 string 物件位於引數字串之後,則比較結果為乙個正整數。

如果這兩個字串相等,則結果為 0;

compareto 只在方法 equals(object) 返回 true 時才返回 0。

string s1 = 「c」;

string s2 = 「b」;

if(s1.compareto(s2)==1)

它有三個返回值~:

當s1>s2時,s1.compareto(s2)==1

當s1=s2時,s1.compareto(s2)==0

當s1

public

boolean

contains(charsequence s)

當且僅當此字串包含指定的 char 值序列時,返回 true。
例:

public

class test

}

equals

public

boolean

equals(object anobject)

將此字串與指定的物件比較。當且僅當該引數不為 null,並且是與此物件表示相同字串行的 string 物件時,結果才為 true。
format

public static string format(string format,object... args)使用指定的格式字串和引數返回乙個格式化字串。

format(locale locale, string format, object... args)使用指定的語言環境,制定字串格式和引數生成格式化的字串。

valueof

將基本資料型態轉換成 string 的 static 方法

String 類常用方法

字串 就是由多個字元組成的一串陣列 一旦被複製,就不能被改變 public class stringdemo string s2 new string bys system.out.println s2 s2 system.out.println s2.length s2.length 5 syst...

String類常用方法

方法名稱 型別 方法描述 public string char value 構造 將字元陣列變為string類物件 public string char value,int offset int count 構造 將部分字元陣列變為string類物件 public char charat int i...

String類常用方法

返回字串長度 public int length 返回字串中指定位置的字元 public char charat int index 提取字串 方法說明 public string substring int beginindex 從beginindex位置起,從當前字串中取出剩餘的字元作為乙個新的...