String類覆蓋了Object類的equals()方法,并提供了自己的實(shí)現(xiàn),它根據(jù)它們的內(nèi)容比較兩個(gè)字符串的相等性。
例如,我們可以比較兩個(gè)字符串的相等性,如下所示:
String str1 = new String("Hello"); String str2 = new String("Hi"); String str3 = new String("Hello"); boolean b1, b2; b1 = str1.equals(str2); // false will be assigned to b1 b2 = str1.equals(str3); // true will be assigned to b2
我們還可以將字符串字面量與字符串字面量或字符串對(duì)象進(jìn)行比較,如下所示:
b1 = str1.equals("Hello"); // true will be assigned to b1 b2 = "Hello".equals(str1); // true will be assigned to b2 b1 = "Hello".equals("Hi"); // false will be assigned to b1
==操作符總是比較內(nèi)存中兩個(gè)對(duì)象的引用。
str1 == str2和str1 == str3將返回false,因?yàn)閟tr1,str2和str3是內(nèi)存中三個(gè)不同String對(duì)象的引用。
要根據(jù)字符的Unicode值比較兩個(gè)字符串,請(qǐng)使用compareTo()方法。它的簽名是
public int compareTo(String anotherString)
它返回一個(gè)整數(shù),它可以是0(零),正整數(shù)或負(fù)整數(shù)。
該方法返回這兩個(gè)字符的Unicode值之間的差異。
例如,“a”.compareTo(“b”)將返回-1。 a的Unicode值為97,b為98。它返回差值97 - 98,它是-1。
以下是字符串比較的示例:
"abc".compareTo("abc") will return 0 "abc".compareTo("xyz") will return -23 (value of "a" - "x") "xyz".compareTo("abc") will return 23 (value of "x" - "a")
以下代碼顯示如何進(jìn)行字符串比較。
public class Main { public static void main(String[] args) { String apple = new String("Apple"); String orange = new String("Orange"); System.out.println(apple.equals(orange)); System.out.println(apple.equals(apple)); System.out.println(apple == apple); System.out.println(apple == orange); System.out.println(apple.compareTo(apple)); System.out.println(apple.compareTo(orange)); } }
上面的代碼生成以下結(jié)果。
Java維護(hù)一個(gè)所有字符串文字的池。它在字符串池中為每個(gè)字符串文字創(chuàng)建一個(gè)String對(duì)象。
當(dāng)遇到字符串字面量時(shí),它在字符串池中查找具有相同內(nèi)容的字符串對(duì)象。如果在字符串池中找不到匹配項(xiàng),它將創(chuàng)建一個(gè)新的String對(duì)象并將其添加到字符串池。
如果它在字符串池中找到匹配項(xiàng),它將使用池中找到的String對(duì)象的引用替換字符串字面值。
我們可以使用其intern()方法向字符串池添加一個(gè)String對(duì)象。
如果發(fā)現(xiàn)匹配,intern()方法從字符串池返回對(duì)象的引用。否則,它將一個(gè)新的String對(duì)象添加到字符串池,并返回新對(duì)象的引用。
要比較兩個(gè)字符串是否相等,忽略它們的情況,請(qǐng)使用equalsIgnoreCase()方法。
要對(duì)等同性執(zhí)行區(qū)分大小寫的比較,請(qǐng)使用equals()方法。
public class Main { public static void main(String[] args) { String str1 = "Hello"; String str2 = "HELLO"; if (str1.equalsIgnoreCase(str2)) { System.out.println("Ignoring case str1 and str2 are equal"); } else { System.out.println("Ignoring case str1 and str2 are not equal"); } if (str1.equals(str2)) { System.out.println("str1 and str2 are equal"); } else { System.out.println("str1 and str2 are not equal"); } } }
上面的代碼生成以下結(jié)果。
String類別根據(jù)字符的Unicode值比較字符串。
要根據(jù)字典順序比較字符串,請(qǐng)使用java.text.Collat??or類的compare()方法執(zhí)行語言敏感(字典順序)字符串比較。
該方法需要兩個(gè)字符串作為參數(shù)進(jìn)行比較。如果兩個(gè)字符串相同,返回0,如果第一個(gè)字符串在第二個(gè)字符串之后返回1,如果第一個(gè)字符串在第二個(gè)字符串之前,返回-1。
以下代碼說明了Collat??or類的使用。
import java.text.Collator; import java.util.Locale; public class Main { public static void main(String[] args) { Locale USLocale = new Locale("en", "US"); Collator c = Collator.getInstance(USLocale); String str1 = "Java"; String str2 = "HTML"; int diff = c.compare(str1, str2); System.out.print("Comparing using Collator class: "); if (diff > 0) { System.out.println(str1 + " comes after " + str2); } else if (diff < 0) { System.out.println(str1 + " comes before " + str2); } else { System.out.println(str1 + " and " + str2 + " are the same."); } } }
上面的代碼生成以下結(jié)果。
更多建議: