Java String intern() 方法
描述
该方法返回字符串对象的规范表示。对于任意两个字符串 s 和 t ,当且仅当s.equals(t)为true时,s.intern() == t.intern()
也为true。
语法
以下是此方法的语法:
public String intern()
参数
这里是参数的详细信息−
- 这是一个默认的方法,不接受任何参数。
返回值
- 此方法返回字符串对象的规范表示。
示例
import java.io.*;
public class Test {
public static void main(String args[]) {
String Str1 = new String("Welcome to Tutorialspoint.com");
String Str2 = new String("WELCOME TO SUTORIALSPOINT.COM");
System.out.print("Canonical representation:" );
System.out.println(Str1.intern());
System.out.print("Canonical representation:" );
System.out.println(Str2.intern());
}
}
这将会产生以下结果:
输出
Canonical representation: Welcome to Tutorialspoint.com
Canonical representation: WELCOME TO SUTORIALSPOINT.COM