intern() 方法返回字符串对象的规范化表示形式。
它遵循以下规则:对于任意两个字符串 s 和 t,当且仅当 s.equals(t) 为 true 时,s.intern() == t.intern() 才为 true。
public String intern()
无
一个字符串,内容与此字符串相同,但一定取自具有唯一字符串的池。
public class Test { public static void main(String args[]) { String Str1 = new String("www.dida100.com"); String Str2 = new String("WWW.dida100.COM"); System.out.print("规范表示:" ); System.out.println(Str1.intern()); System.out.print("规范表示:" ); System.out.println(Str2.intern()); } }
以上程序执行结果为:
规范表示:www.dida100.com 规范表示:WWW.dida100.COM