Java String intern() 方法示例。


String 类的 intern() 方法为字符串对象返回一个规范表示形式。因此,对于任意两个字符串 s 和 t,在且仅在 s.equals(t) 为 true 时,s.intern() == t.intern() 为 true。

示例

实时演示

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

更新于:2020-02-26

138 次查看

开启你的 职业生涯

完成这门课程获得认证

开始
广告