Java String intern()方法
描述:
此方法返回的字符串对象的规范化表示。由此可见,对于任何两个字符串s和t,s.intern() == t.intern()为true, 当且仅当s.equals(t)是true。
语法
此方法定义的语法如下:
public String intern()
参数
这里是参数的细节:
-
NA
返回值:
-
此方法返回的字符串对象的规范化表示。
例子:
import java.io.*; public class Test{ public static void main(String args[]){ String Str1 = new String("Welcome to gitbook.net"); String Str2 = new String("WELCOME TO gitbook.net"); System.out.print("Canonical representation:" ); System.out.println(Str1.intern()); System.out.print("Canonical representation:" ); System.out.println(Str2.intern()); } }
这将产生以下结果:
Canonical representation: Welcome to gitbook.net Canonical representation: WELCOME TO gitbook.net