早教吧 育儿知识 作业答案 考试题库 百科 知识分享

java中equals()相等的两个对象,hashcode()一定相等这句该怎么样理解,equals()相等指的是Object.equals()的对象地址相等吗?然后hashcode()就相等了?还是怎么样理解?还有equals什么情况下重写,和重写equa

题目详情
java 中 equals() 相等的两个对象,hashcode() 一定相等
这句该怎么样理解,equals()相等指的是Object.equals()的对象地址相等吗?然后 hashcode()就相等了?还是怎么样理解?还有equals什么情况下重写,和重写equals 一定为什么也要重写 hashcode
▼优质解答
答案和解析
在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 (Entry e = 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;
    }