1. 程式人生 > >print和println預設呼叫類中的public String toString(){return "***"} 分析

print和println預設呼叫類中的public String toString(){return "***"} 分析

先看下來自mindview的一段程式碼:

 

 
  1. package reusing;

  2.  
  3. //: reusing/Bath.java

  4. // Constructor initialization with composition.

  5. import static net.mindview.util.Print.*;

  6.  
  7. class Soap {

  8. private String s;

  9.  
  10. Soap() {

  11. print("Soap()");

  12. s = "Constructed";

  13. }

  14.  
  15. public String toString() {

  16. return s;

  17. }

  18. }

  19.  
  20. public class Bath {

  21. private String // Initializing at point of definition:

  22. s1 = "Happy",

  23. s2 = "Happy", s3, s4;

  24. private Soap castille;

  25. private int i;

  26. private float toy;

  27.  
  28. public Bath() {

  29. print("Inside Bath()");

  30. s3 = "Joy";

  31. toy = 3.14f;

  32. castille = new Soap();

  33. }

  34.  
  35. // Instance initialization:

  36. {

  37. i = 47;

  38. }

  39.  
  40. public String toString() {

  41. if (s4 == null) // Delayed initialization:

  42. s4 = "Joy";

  43. return "s1 = " + s1 + "\n" + "s2 = " + s2 + "\n" + "s3 = " + s3 + "\n"

  44. + "s4 = " + s4 + "\n" + "i = " + i + "\n" + "toy = " + toy

  45. + "\n" + "castille = " + castille;

  46. }

  47.  
  48. public static void main(String[] args) {

  49. Bath b = new Bath();

  50. print(b);

  51. }

  52. }

列印物件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()這個 方法,下面是這個方法的程式碼: 

 
  1. public static String valueOf(Object obj) {

  2. return (obj == null) ? "null" : obj.toString();

  3. }

這個方法中,當傳入的物件為 null 時返回一個 null,當非 null 時,則返回這個 obj 的 toString()。
所以, 這就是當我們呼叫 print 或者 println 列印一個物件時,它會打印出這個 物件的 toString()的最終根源。

--------------------- 作者:anddyhua 來源:CSDN 原文:https://blog.csdn.net/anddyhua/article/details/42675099?utm_source=copy 版權宣告:本文為博主原創文章,轉載請附上博文連結!