equals和hashCode


public class Person
{
private int id;
private String name;
private String password;
private double salary;
private int hashCode;
public Person(int id,String name,String password,double salary) {
this.id = id;
this.name = name;
this.password = password;
this.salary = salary;
}
public boolean equals(Object obj) {
if (this == obj)
{
return true;
}
if (!(obj instanceof Person))
{
return false;
}
Person other = (Person)obj;
if (this.id != other.id)
{
return false;
}
if (!nullSafeEquals(this.name,other.name))
{
return false;
}
if (!nullSafeEquals(this.password,other.password))
{
return false;
}
if (Double.doubleToLongBits(this.salary) != Double.doubleToLongBits(other.salary))
{
return false;
}
return true;
}
private boolean nullSafeEquals(Object obj1,Object obj2) {
return obj1 == null ? obj2 == null : obj1.equals(obj2);
}

public int hashCode() {
if (hashCode == 0)
{
int result = 17;
result = result * 37 + this.id;
result = result * 37 + (this.name == null ? 0 : this.name.hashCode());
result = result * 37 + (this.password == null ? 0 : this.password.hashCode());
long temp = Double.doubleToLongBits(this.salary);
int salaryInt = (int)(temp ^ (temp >>> 32));
result = result * 37 + salaryInt;
hashCode = result;
}
return hashCode;
}
public String toString() {
return super.toString() + ": [" + this.name + "]";
}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值