String 类的 toString() 方法返回它本身的一个字符串。示例实时演示import java.io.*; public class Test { public static void main(String args[]) { String Str = new String("Welcome to Tutorialspoint.com"); System.out.print("返回值:"); System.out.println(Str.toString()); } }输出返回值:Welcome to Tutorialspoint.comString 类的 valueOf() 方法变体接受不同的变量,例如整数、浮点数、布尔值等,并将它们转换为 String。示例实时演示public class Sample { public static void main(String args[]){ int i = 200; float f = 12.0f; ... 阅读更多