System.out.println()是默认调用toString(),而 网上查的toString()源码:public String toString() { return getClass().getName() + "@" + Integer.toHexString(hashCode()); }这么说打印对象的时候就是 类名@hashcode 但是打印出来的十六进制又是表示地址的。但是地址又不是hashcode。。请问这里怎么理解
添加回答
举报
0/150
提交
取消