Java 字符串 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

更新于: 26-2月-2020

138 浏览

开启你的 职业生涯

完成课程,获得认证

开始
广告