hashCode重写以后,同一个类的不同实例如何判断相等?
程序员文章站
2022-03-15 20:53:56
...
一、Object的toString方法源代码:
public String toString() {
return getClass().getName() + "@" + Integer.toHexString(hashCode());
}
重写hashCode之后,输出的就不是地址了,而是你写的hashCode值
二、代码演示
Student student = new Student();
Student student1 = new Student();
System.out.println(student.hashCode());
System .out.println(student1.hashCode());
System.out.println(student == student1);
结果:
460141958
460141958
false
重写了类的hashCode方法以后,尽管是相同类的2个不同的实例,他们输出的hashCode还是相同的。
三、分析
==比较对象是否相等,需要满足两个条件。hashcode方法和equals方法也需要重写,如果两个对象在hashcode和字面量值比较(equals)上都相等,才能说这两个对象一样。
总的来说hashcode一样,两个对象不一定相同,还需要比较equals;两个对象一样,它们的hashcode必定一样。