Java lang 包提供了Integer类,该类具有将整数转换为字符串和反向转换的方法。可以使用parseInt()方法将字符串转换为整数,使用toString()方法将Integer转换为字符串。示例 实时演示public class Sample { public static void main(String args[]) { String str = "1212"; int num = Integer.parseInt(str); System.out.println(num); String st = Integer.toString(num); System.out.println(); } }输出1212 1212
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("规范表示:"); System.out.println(Str1.intern()); System.out.print("规范表示:"); System.out.println(Str2.intern()); } }输出规范表示:Welcome to Tutorialspoint.com 规范表示:WELCOME TO ... 阅读更多