Effective Java Item10-总是覆盖toString方法

Effective Java 2nd Edition Reading Notes

Item10: Always override toString

总是覆盖toString方法

 

java.lang.ObjecttoString方法的说明为:

Returns a string representation of the object. In general, the toString method returns a string that "textually represents" this object. The result should be a concise but informative representation that is easy for a person to read. It is recommended that all subclasses override this method.

The toString method for class Object returns a string consisting of the name of the class of which the object is an instance, the at-sign character `@', and the unsigned hexadecimal representation of the hash code of the object. In other words, this method returns a string equal to the value of:

 getClass().getName() + '@' + Integer.toHexString(hashCode())

 

java.lang.ObjecttoString方法返回的是类的名字加上@符号然后是一个无符号的16进制数(对象的hash code),这样的toString方法显然传达的信息还不够。而toString方法的说明中包含了“建议所有的子类都覆盖这个方法”。

 

toString方法在printlnprintf字符串连接,以及assert断言中,以及在调试器中,都被调用。

 

toString方法应该包含所有对象的重要信息。

 

另外一个问题是:是否需要对toString返回的值进行指定格式。

指定格式的好处在于它可以做为一个标准,不会带有歧义,并且可读性好。这个返回值可以用于输入或者输出,持久化的可读对象(xml文件)。如果指定格式的话,最好再提供一个工厂类用于根据String构造实例。

指定格式的缺点在于它是和接口一样,一旦指定了,就不能改变,因为可能有外部使用它,一旦它改变了,外部代码将无法使用。

一旦需要指定格式,那么要准确的定义并进行文档注释:

/**

 * Returns the string representation of this phone number.

 * The string consists of fourteen characters whose format

 * is "(XXX) YYY-ZZZZ", where XXX is the area code, YYY is

 * the prefix, and ZZZZ is the line number.  (Each of the

 * capital letters represents a single decimal digit.)

 *

 * If any of the three parts of this phone number is too small

 * to fill up its field, the field is padded with leading zeros.

 * For example, if the value of the line number is 123, the last

 * four characters of the string representation will be "0123".

 *

 * Note that there is a single space separating the closing

 * parenthesis after the area code from the first digit of the

 * prefix.

 */

@Override public String toString() {

return String.format("(%03d) %03d-%04d",

areaCode, prefix, lineNumber);

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值