Java intern() 方法
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.phpcodeweb.com");
String Str2 = new String("www.phpcodeweb.com");
System.out.print("规范表示:" );
System.out.println(Str1.intern());
System.out.print("规范表示:" );
System.out.println(Str2.intern());
}
}
以上程序执行结果为:
规范表示:www.phpcodeweb.com
规范表示:www.phpcodeweb.com