标签:res private 比较 获取对象 hash shc etag 内容 获取
public class Person {
private String name;
private int age;
//重写equals方法
@Override
public boolean equals(Object obj) {//判断地址是否相等
if (this == obj) {
return true;
}
// instanceof 已经处理了obj = null的情况
if (!(obj instanceof Person)) {
return false;
}
Person perObj = (Person) obj;
return perObj.age == age && perObj.name.equals(name);
}
//重写hashcode
@Override
public int hashCode() {
int result = name.hashCode();
result = 17 * result + age;
return result;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}
引出下面两个面试题
——“==”:进行的是数值比较,如果用于对象比较上比较的是两个内存的地址数值;
——equals():是类所提供的的一个比较方法,可以直接进行字符串内容的判断。
hashcode是用于散列数据的快速存取,(如利用HashSet/HashMap/Hashtable类来存储数据时,都是根据存储对象的hashcode值来进行判断是否相同的。)使用hashCode()方法获取对象的哈希码来计算对象存储位置的。如果不重写hashcode()方法两个内容相同的对象会计算出不一样的hash码。在存储散列集合时(如Set类),将会存储了两个值一样的对象,导致混淆。因此,就也需要重写hashcode()方法
标签:res private 比较 获取对象 hash shc etag 内容 获取
原文地址:https://www.cnblogs.com/smilesboy/p/13060059.html