Effective Java 英文 第二版 读书笔记 Item 10:Always override toString

Posted 郁闷紫番薯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Effective Java 英文 第二版 读书笔记 Item 10:Always override toString相关的知识,希望对你有一定的参考价值。

for example,PhoneNumber@163b91  class name+@+unsigned hexadecimal representation of hashcode.

define: a concise but informative representation that is easy for a person to read

providing a good toString implementation makes your class much more pleasant to use.

 

when practical,the toString method should return all of the interesting information contained in the object

 

whether or not you decide to specify the format,you should clearly document your intentions.

 

for example:

provide programmatic access to all of the information contained in the value returned by toString.

总体感觉:需要利用toString 来描述对象时候才重载,感觉应用机会比较少

以上是关于Effective Java 英文 第二版 读书笔记 Item 10:Always override toString的主要内容,如果未能解决你的问题,请参考以下文章

《Effective Java中文版第二版》读书笔记

《Effective Java(中文第二版)》PDF下载

Effective Java 第二版 Enum

Effective Java通俗理解(持续更新)

[读书笔记]Effective Java 第二章

Effective Java 第三版——48. 谨慎使用流并行