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