print和println預設呼叫類中的public String toString(){return "***"} 分析
先看下來自mindview的一段程式碼:
-
package reusing;
-
//: reusing/Bath.java
-
// Constructor initialization with composition.
-
import static net.mindview.util.Print.*;
-
class Soap {
-
private String s;
-
Soap() {
-
print("Soap()");
-
s = "Constructed";
-
}
-
public String toString() {
-
return s;
-
}
-
}
-
public class Bath {
-
private String // Initializing at point of definition:
-
s1 = "Happy",
-
s2 = "Happy", s3, s4;
-
private Soap castille;
-
private int i;
-
private float toy;
-
public Bath() {
-
print("Inside Bath()");
-
s3 = "Joy";
-
toy = 3.14f;
-
castille = new Soap();
-
}
-
// Instance initialization:
-
{
-
i = 47;
-
}
-
public String toString() {
-
if (s4 == null) // Delayed initialization:
-
s4 = "Joy";
-
return "s1 = " + s1 + "\n" + "s2 = " + s2 + "\n" + "s3 = " + s3 + "\n"
-
+ "s4 = " + s4 + "\n" + "i = " + i + "\n" + "toy = " + toy
-
+ "\n" + "castille = " + castille;
-
}
-
public static void main(String[] args) {
-
Bath b = new Bath();
-
print(b);
-
}
-
}
列印物件b的時候,建構函式內的自動會呼叫初始化,還自動呼叫了toString()
為什麼toString 方法會自動被呼叫?
這個問題其實比較簡單的,大家可以直接看 Java 中相關類的原始碼就可以知道了。
public static String valueOf(Object obj) 方法
引數: obj
返回:
如果引數為 null, 則字串等於 "null";
否則, 返回 obj.toString() 的值
現在的問題是,當用戶呼叫 print 或 println 方法列印一個物件時,為什麼會打印出物件的 toString()方法的返回資訊。public String toString() { return getClass().getName() + "@" + Integer.toHexString(hashCode()); }
1.這個是 Ojbect 中的 toString()方法,toString ()方法會打印出 return 資訊。
public void println(Object x){
String s = String.valueOf(x);
synchronized (this) {
print(s); newLine();
}
public void print(Object obj) {
write(String.valueOf(obj));
}
2.這兩個方法是 System.out.print 和 println()方法傳入一個 Object 類物件時列印 的內容,當然,傳入其它類時,同樣如此。
3.我們看到,在 2 中,當要列印一個物件時,會自動呼叫 String.valueOf()這個 方法,下面是這個方法的程式碼:
-
public static String valueOf(Object obj) {
-
return (obj == null) ? "null" : obj.toString();
-
}
這個方法中,當傳入的物件為 null 時返回一個 null,當非 null 時,則返回這個 obj 的 toString()。
所以, 這就是當我們呼叫 print 或者 println 列印一個物件時,它會打印出這個 物件的 toString()的最終根源。
--------------------- 作者:anddyhua 來源:CSDN 原文:https://blog.csdn.net/anddyhua/article/details/42675099?utm_source=copy 版權宣告:本文為博主原創文章,轉載請附上博文連結!