标签:
默认的toString结果public String toString(){ return getClass().getName()+"@"+Integer.toHexString(hashCode());}正是因为hashCode的区别,obj1.equals(obj2)结果为false。其中obj1和obj2都是Object对象。
Object的toString决定了重写equals
原文地址:http://www.cnblogs.com/my-cup/p/5229036.html