在java中,equals和hashcode是有设计要求的,equals相等,则hashcode一定相等,反之则不然。
为何会有这样的要求?
在集合中,比如HashSet中,要求放入的对象不能重复,怎么判定呢?
首先会调用hashcode,如果hashcode相等,则继续调用equals,也相等,则认为重复。
如果重写equals后,如果不重写hashcode,则hashcode就是继承自Object的,返回内存编码,这时候可能出现equals相等,而hashcode不等,你的对象使用集合时,就会等不到正确的结果
public V put(K key, V value) {
if (key == null)
return putForNullKey(value);
int hash = hash(key.hashCode());
int i = indexFor(hash, table.length);
for (Entrye = table[i]; e != null; e = e.next) {
Object k;
if (e.hash == hash && ((k = e.key) == key || key.equals(k))) {
V oldValue = e.value;
e.value = value;
e.recordAccess(this);
return oldValue;
}
}
modCount++;
addEntry(hash, key, value, i);
return null;
}
equals相等指的是“内容”相等,不重写equals是调用继承自Object的equals,而Object是用"=="实现的.。重写equals要根据自己要比较的对象来确定。Java API中对重写该方法作了说明:若重写equals就应该重写hashcode方法且hashcode方法与equals方法返回一致,即当equals返回true时,hashcode也要返回true。
自定义类一般都应该重写equals/hashCode。 Singleton 模式的类不必重写。
重写equals时重写hashCode应该是为了保证在集合类中的一致性。
是否相同,覆盖equals后,由你自己决定如何相等的