package sun;
public class Student {
private String id;
public Student(String id) {
this.id = id;
}
@Override
public int hashCode() {
return id.hashCode();
}
}
此时我们重写了hashCode方法,再次向集合中存储自定义元素
public static void main(String[] args) {
HashSet<Student> set = new HashSet<Student>();
set.add(new Student("100"));
set.add(new Student("100"));
System.out.println(set);//[Student{id='100'}]
}
HashSet add方法源码
public boolean add(E e) {
return map.put(e, PRESENT)==null;
}
HashMap put方法
public V put(K key, V value) {
return putVal(hash(key), key, value, false, true);//存第一个和第二个值的时候由于都是调用Student类中重写后的hashCode方法,该方法返回id的hashCode值;因为id都相同,所以第二次存的对象与第一次存的对象hash(key)结果是一样的
HashMap putVal方法
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
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,所以调用Object类中equals 比较的是地址 false
//p.hash 第一个学生的idHash方法返回值 k=p.key 第一个学生对象
e = p;
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;
if (!onlyIfAbsent || oldValue == null)// onlyIfAbsent本来就为false,所以!onlyIfAbsent true
e.value = value;
afterNodeAccess(e);
return oldValue;
}
}
++modCount;
if (++size > threshold)
resize();
afterNodeInsertion(evict);