toString()
此方法在java.lang.Object.toString()中可用。
此方法用于返回对象的字符串表示形式。
此方法返回最终用户易于理解的对象字符串。
此方法不返回异常。
语法:
String toString(){ }
参数:
我们不会在Object类的方法中将任何对象作为参数传递。
返回值:
该方法的返回类型为String,这意味着该方法返回对象的String表示形式。
toString()
方法的示例import java.lang.Object; import java.util.LinkedList; public class ObjectClass { public static void main(String[] args) { //创建一个Float类型的对象 Float fl = new Float(10.f); //创建一个链接列表类型的对象 LinkedList ll = new LinkedList(); //在链接列表中添加一些元素 ll.add(10); ll.add(20); //显示对象的字符串表示形式 System.out.println("The String representation of the Object fl is: " + fl.toString()); System.out.println("The String representation of the Object ll is: " + ll.toString()); } }
输出结果
D:\Programs>javac ObjectClass.java D:\Programs>java ObjectClass The String representation of the Object fl is :10.0 The String representation of the Object ll is :[10, 20]