详述HashSet类add方法(五)
这次与(四)不同的是在学生类中重写了equals()方法,下面是添加第二个学生的方法
public class Test1 {
public static void main(String[] args) {
HashSet<Student> set = new HashSet<Student>();
set.add(new Student("100"));
set.add(new Student("100"));//如何执行
}
}
学生类,重写了hashCode()方法和equals()方法
public class Student {
private String id;
public Student(String id) {
this.id = id;
}
@Override
public int hashCode() {
return id.hashCode();
}
@Override
public boolean equals(Object obj) {//obj值集合中的某个对象,因为集合中可能存的未必都是学生类,比如集合泛型为Object的时候,既可以存学生对象,还可以存其它对象
if(obj instanceof Student ){
Student stu = (Student)obj;
return this.id.equals(stu.id);//this即是当前正在试图被存储的对象
}
return false;
}
}
1.当第二次添加学生对象时,首先调用add()方法
public boolean add(E e) {
return map.put(e, PRESENT)==null;
}
2.调用map.put()方法,PRESENT是一个常量,存第一个和第二个值的时候由于学生类中重写了hashCode()方法,所以返回值是id的hashCode值,因为第二个对象的id与第一次一样,所以第二次存的对象与第一次存的对象hash(key)结果一样
public V put(K key, V value) {
return putVal(hash(key), key, value, false, true);
static final int hash(Object key) {
int h;
return (key == null) ? 0 : (h = key.hashCode()) ^ (h >>> 16);
}
3.调用putVal()方法
- 走第一个if,因为已将有存储了一个值,table不为null,返回false
- 走第二个if,因为 第二次与第一次的hashCode一样,所以 tab[i = (n - 1) & hash]处是第一个值,不为null,所以返回false,走else部分,
- else中第一个if,p.hash是第一个学生的hash值,p.hash与hash值相等为true,p.key为第一个学生对象,所以p.key == key 比较的是地址为false,key!=null&&key.equals(k)值为true,因为学生类中重写equals方法,key.equals.(k)比较的是两个对象的id,所以if的返回是true,将第一个值赋给e
- 走else第二个if,e!=null为true,最后返回第一个学生的value值
final V putVal(int hash, K key, V value, boolean onlyIfAbsent, boolean evict) {
Node<K,V>[] tab; Node<K,V> p; int n, i;
if ((tab = table) == null || (n = tab.length) == 0)//由于存第一个对象时table全局变量已经有值了,所以tabl tab不为空 tab.length不等于0,多以该if为false n为 16
n = (tab = resize()).length;
if ((p = tab[i = (n - 1) & hash]) == null)// i = (n - 1) & hash 数组长度-1 & hash值,即16-1 & hash,因为第一个和第二个值的hash方法返回值相同,所以存第一个值和存第二个值的时候(n - 1) & hash的值是一样的 ,所以存第二个对象时tab[i = (n - 1) & hash]不为null p变量存储的是集合中已有元素
tab[i] = newNode(hash, key, value, null);
else {
Node<K,V> e; K k;
if (p.hash == hash && ((k = p.key) == key || (key != null && key.equals(k))))// p.hash == hash true (k = p.key) == key false (key != null && key.equals(k)) 因为学生类重写equals,所以调用Student类中equals 比较的是两个对象id是否相同 true
e = p;//将p指定的集合中元素赋值给e变量
else if (p instanceof TreeNode)
e = ((TreeNode<K,V>)p).putTreeVal(this, tab, hash, key, value);
else {
for (int binCount = 0; ; ++binCount) {
if ((e = p.next) == null) {
p.next = newNode(hash, key, value, null);
if (binCount >= TREEIFY_THRESHOLD - 1) // -1 for 1st
treeifyBin(tab, hash);
break;
}
if (e.hash == hash &&
((k = e.key) == key || (key != null && key.equals(k))))
break;
p = e;
}
}
if (e != null) { // existing mapping for key
V oldValue = e.value; // e.value 常量Object
if (!onlyIfAbsent || oldValue == null)// onlyIfAbsent本来就为false,所以!onlyIfAbsent true
e.value = value;//value变量其实是第二次存储对象时存入的值 Object
afterNodeAccess(e);
return oldValue; //返回第一个学生对象,存储失败
}
}
++modCount;
if (++size > threshold)
resize();
afterNodeInsertion(evict);
}