Java 重写equals的时候为什么一定要重写hashcode…
2020-04-16 16:14:11来源:博客园 阅读 ()
Java 重写equals的时候为什么一定要重写hashcode-一个例子
实体类
class Point { private int x; private int y; public int getX() { return x; } public void setX(int x) { this.x = x; } public int getY() { return y; } public void setY(int y) { this.y = y; } @Override public boolean equals(Object obj) { if (this == obj)//ref相等 { return true; } if (obj == null || this.getClass() != obj.getClass()) { return false; } Point that = (Point) obj; return x == that.x && y == that.y;//对比值 } }
以上代码重写了equals。
比较
@Slf4j public class EqualsHashDemo { public static void compare() { Point a = new Point(); a.setX(1); a.setY(2); Point b = new Point(); b.setX(1); b.setY(2); log.info("a.equals(b) is " + a.equals(b)); } }
这个时候输出是true
把对象装入hashset进行比较
@Slf4j public class EqualsHashDemo { public static void compare() { Point a = new Point(); a.setX(1); a.setY(2); Point b = new Point(); b.setX(1); b.setY(2); log.info("a.equals(b) is " + a.equals(b)); HashSet<Point> points=new HashSet<>(); points.add(a); log.info("points.contains(b) is " + points.contains(b)); } }
输出
a.equals(b) is true points.contains(b) is false
这里就是因为没有重写hashcode导致的。没有重写,默认使用的是父类的hashcode,每个对象各不相同(hashset的实现暂时先不谈)
重写hashcode
class Point { private int x; private int y; public int getX() { return x; } public void setX(int x) { this.x = x; } public int getY() { return y; } public void setY(int y) { this.y = y; } @Override public boolean equals(Object obj) { if (this == obj)//ref相等 { return true; } if (obj == null || this.getClass() != obj.getClass()) { return false; } Point that = (Point) obj; return x == that.x && y == that.y;//对比值 } @Override public int hashCode() { return Objects.hash(x, y); } }
再次运行
a.equals(b) is true points.contains(b) is true
同样重写hashcode后下面的代码也能输出正常的值0000
HashMap<Point, String> map = new HashMap<>(); map.put(a, "00000"); log.info(map.get(b));
如果不重新,则会输出null
原文链接:https://www.cnblogs.com/Brake/p/12716839.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:HashMap源码分析
- 国外程序员整理的Java资源大全(全部是干货) 2020-06-12
- 2020年深圳中国平安各部门Java中级面试真题合集(附答案) 2020-06-11
- 2020年java就业前景 2020-06-11
- 04.Java基础语法 2020-06-11
- Java--反射(框架设计的灵魂)案例 2020-06-11
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash