黑马程序员技术交流社区
标题:
eclipse自动覆写hashCode为什么是这样的
[打印本页]
作者:
bullfrog
时间:
2014-9-8 21:59
标题:
eclipse自动覆写hashCode为什么是这样的
class Point
{
int x;
int y;
public Point(int x, int y) {
this.x = x;
this.y = y;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + x;
result = prime * result + y;
return result;
复制代码
那个31是怎么来的?魔法数字吗? 为什么要么定义hashcode?
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2