作者:最好的冰雪之母_227 | 来源:互联网 | 2024-10-16 10:00
篇首语:本文由编程笔记#小编为大家整理,主要介绍了Java中的 toString 方法相关的知识,希望对你有一定的参考价值。
1. Object 类中定义有 public String toString() 方法,其返回值是 String 类型,描述当前对象的有关信息;
2. 在进行 String 与其它类型数据的连接操作时(如:System.out.println("info"+person)),将自动调用该对象类的 toString() 方法;
3. 可以根据需要在用户自定义类型中重写 toString() 方法,如:
class Dog {
public String toString() {
return "I‘m a good dog!!!";
}
}
class Test {
public static void main(String[] args){
Dog d = new Dog();
System.out.println("d: = " +d);
}
}
// 运行结果为:d: = I‘m a good dog!!!
如果在 Dog 类中不重写 toString() 方法,也即:
class Dog {
// public String toString() {
// return "I‘m a good dog!!!";
// }
}
class Test {
public static void main(String[] args){
Dog d = new Dog();
System.out.println("d: = " +d);
}
}
// 运行结果为:d: = [email protected]
其返回结果为:类名[email protected]+哈希码