详述HashSet类add方法(2)

import java.util.HashSet;

public class Test2 {
	
	public static void main(String[] args) {
		HashSet<String> names = new HashSet<String>();
		names.add("Jim");
		names.add("Jim");//如何执行
	}
}

HashSet add方法:

public boolean add(E e) {
    return map.put(e, PRESENT)==null;
}

HashMap put方法:

存第一个和存第二个值的时候由于hashCode相同,所以第二次存的对象与第一次存的对象hash(key)结果是一样的

public V put(K key, V value) {
	return putVal(hash(key), key, value, false, true);
}

HashMap putVal方法:

1.if ((tab = table) == null || (n = tab.length) == 0)  此时 由于存第一个对象时table全局变量已经有值了,所以table即 tab不为空   即是tab.length不等于0,所以为false ,此时 n为 16

2.if ((p = tab[i = (n - 1) & hash]) == null)   i = (n - 1) & hash 表示 数组长度-1  & hash值,即16-1 & hash,因为第一个和第二个值的时候由于hashCode相同,所以存第一个值和存第二个值的时候(n - 1) & hash的值是一样的,因为第一次已经在此(n - 1) & hash 位置存了数据tab[i = (n - 1) & hash]不为null  即是 p不为null  (p = tab[i = (n - 1) & hash]) == null , 结果为 false  

可以得出结论:向HaspMap存储数据时,如果当前数据的hashcode和集合中已存在的元素的hashcode相同,则该if不成立

 3.if (p.hash == hash && ((k = p.key) == key || (key != null && key.equals(k))))     

(k = p.key) == key,由于两次的对象共用一个地址为 true

names.add(new String("Jim")); 则false;

(key != null && key.equals(k)) 为true

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,因为第一个和第二个值的时候由于hashCode相同,所以存第一个值和存第二个值的时候(n - 1) & hash的值是一样的,因为第一次已经在此(n - 1) & hash 位置存了数据tab[i = (n - 1) & hash]不为null p不为null  (p = tab[i = (n - 1) & hash]) == null  false  结论:向HaspMap存储数据时,如果当前数据的hashcode和集合中已存在的元素的hashcode相同,则该if不成立
            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))))// (k = p.key) == key,由于两次的对象时一个地址 true,names.add(new String("Jim")); 则false;(key != null && key.equals(k)) 为true
                e = p;//将第一个Jim的地址为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;
                afterNodeAccess(e);
                return oldValue;//返回第一个Jim,存储失败
            }
        }
        ++modCount;
        if (++size > threshold)
            resize();
        afterNodeInsertion(evict);
        return null;
    }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值