为什么重写equals必须重写hashCode的基础分析

2019-10-28 06:20:17来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

为什么重写equals必须重写hashCode的基础分析

为什么重写equals必须重写hashCode的基础分析

1.我们先来了解下原生的equals和hashCode代码

  原生equals:它判断的是两个对象是否相等

  原生hashCode值:它是根据内存地址换算出来的一个整数类型的值

2.至于为什么要重写equals和hashCode?

  当然为了满足我们具体的业务需求啦,毕竟我们不一定只比较对象相等嘛

3.做一个超简单小案例来理解下(包名不规范,切勿模仿);

1)创建一个Student类不重写equals和hashCode

package 重写equal必须重写hashcode;

public class Student {
	public String id; //学生的id
	public String name; //学生的名字
	
	public Student() {
		super();
		// TODO Auto-generated constructor stub
	}
	
	public String toString() {
		return id + ":" + name;
	}
	
	public Student(String id, String name) {
		super();
		this.id = id;
		this.name = name;
	}
	
}

  (2)new一个hashSet,分别添加三个student

package 重写equal必须重写hashcode;

import java.util.HashSet;

public class Test {
	
	//学生ID和姓名都相同我们视为重复
	public static void main(String[] args) {
		HashSet hs = new HashSet();
		hs.add(new Student("001","小明"));
		hs.add(new Student("002","小花"));
		hs.add(new Student("002","小花"));
		System.out.println(hs);
	}
}

  (3)运行结果如下:

 

 (4)我们可以看到,信息出现了重复;new的对象不同生成的hashCode值不同,所以hashSet会把三个Student对象当作不同的对象。

 

2.接下来我们重写equals而不重写hashCode

(1)重写equals后代码如下:

package 重写equal必须重写hashcode;

public class Student {
	public String id; //学生的id
	public String name; //学生的名字
	
	public Student() {
		super();
		// TODO Auto-generated constructor stub
	}
	
	public String toString() {
		return id + ":" + name;
	}
	
	public Student(String id, String name) {
		super();
		this.id = id;
		this.name = name;
	}
	
	public boolean equals(Object obj) {
		if(this == obj) {  //判断是否是同一对象
			return true;	//同一类型返回true(跟自己比较)
		}
		if(getClass()!=obj.getClass()) {   //判断是否为同一类型
			return false;  //不是同类型返回false(类型不同肯定为不同的对象)
		}
		Student stu = (Student)obj; //强制转换成Student类型
		boolean result = this.id.equals(stu.id); //判断ID是否相等
		return result; //返回判断结果
	}
}

 (2)现在我们运行下,结果如下图:

3)可以发现重复的信息没有删除掉,可以判断添加Student对象没有调用equals方法,而是根据hashCode值的不同,hashSet就认为三个对象不相等。

 

3.最后我们重写equals和hashCode;

(1)重写hashCode;

package 重写equal必须重写hashcode;

public class Student {
	public String id; //学生的id
	public String name; //学生的名字
	
	public Student() {
		super();
		// TODO Auto-generated constructor stub
	}
	
	public String toString() {
		return id + ":" + name;
	}
	
	public Student(String id, String name) {
		super();
		this.id = id;
		this.name = name;
	}
	
	public boolean equals(Object obj) {
		if(this == obj) {  //判断是否是同一对象
			return true;	//同一类型返回true(跟自己比较)
		}
		if(getClass()!=obj.getClass()) {   //判断是否为同一类型
			return false;  //不是同类型返回false(类型不同肯定为不同的对象)
		}
		Student stu = (Student)obj; //强制转换成Student类型
		boolean result = this.id.equals(stu.id); //判断ID是否相等
		return result; //返回判断结果
	}
	
	public int hashCode() { //重写hashCode
		return id.hashCode();  //返回ID属性的哈希值
	}
}

 (2)运行结果如下:

 

 (3)是不是就把重复的信息移除了呢?哈哈

 

 

如果有不妥之处,请各位大佬多多包涵,这些也是个人的理解

如果你有补充,欢迎留下你的意见在评论区!


原文链接:https://www.cnblogs.com/ibcdwx/p/11741112.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:蓝桥杯算法基础第一章测验

下一篇:还在重复写空指针检查代码?考虑使用 Optional 吧!