欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java京东面试题之为什么HashMap线程不安全

程序员文章站 2022-06-28 14:30:28
目录01、多线程下扩容会死循环02、多线程下 put 会导致元素丢失03、put 和 get 并发时会导致 get 到 null01、多线程下扩容会死循环众所周知,hashmap 是通过拉链法来解决哈...

01、多线程下扩容会死循环

众所周知,hashmap 是通过拉链法来解决哈希冲突的,也就是当哈希冲突时,会将相同哈希值的键值对通过链表的形式存放起来。

jdk 7 时,采用的是头部插入的方式来存放链表的,也就是下一个冲突的键值对会放在上一个键值对的前面(同一位置上的新元素被放在链表的头部)。扩容的时候就有可能导致出现环形链表,造成死循环。

resize 方法的源码:

// newcapacity为新的容量
void resize(int newcapacity) {
    // 小数组,临时过度下
    entry[] oldtable = table;
    // 扩容前的容量
    int oldcapacity = oldtable.length;
    // maximum_capacity 为最大容量,2 的 30 次方 = 1<<30
    if (oldcapacity == maximum_capacity) {
        // 容量调整为 integer 的最大值 0x7fffffff(十六进制)=2 的 31 次方-1
        threshold = integer.max_value;
        return;
    }

    // 初始化一个新的数组(大容量)
    entry[] newtable = new entry[newcapacity];
    // 把小数组的元素转移到大数组中
    transfer(newtable, inithashseedasneeded(newcapacity));
    // 引用新的大数组
    table = newtable;
    // 重新计算阈值
    threshold = (int)math.min(newcapacity * loadfactor, maximum_capacity + 1);
}

transfer 方法用来转移,将小数组的元素拷贝到新的数组中。

void transfer(entry[] newtable, boolean rehash) {
    // 新的容量
    int newcapacity = newtable.length;
    // 遍历小数组
    for (entry<k,v> e : table) {
        while(null != e) {
            // 拉链法,相同 key 上的不同值
            entry<k,v> next = e.next;
            // 是否需要重新计算 hash
            if (rehash) {
                e.hash = null == e.key ? 0 : hash(e.key);
            }
            // 根据大数组的容量,和键的 hash 计算元素在数组中的下标
            int i = indexfor(e.hash, newcapacity);

            // 同一位置上的新元素被放在链表的头部
            e.next = newtable[i];

            // 放在新的数组上
            newtable[i] = e;

            // 链表上的下一个元素
            e = next;
        }
    }
}

注意 e.next = newtable[i]newtable[i] = e 这两行代码,就会将同一位置上的新元素被放在链表的头部。

扩容前的样子假如是下面这样子。

Java京东面试题之为什么HashMap线程不安全

那么正常扩容后就是下面这样子。

Java京东面试题之为什么HashMap线程不安全

假设现在有两个线程同时进行扩容,线程 a 在执行到 newtable[i] = e; 被挂起,此时线程 a 中:e=3、next=7、e.next=null

Java京东面试题之为什么HashMap线程不安全

线程 b 开始执行,并且完成了数据转移。

Java京东面试题之为什么HashMap线程不安全

此时,7 的 next 为 3,3 的 next 为 null。

随后线程a获得cpu时间片继续执行 newtable[i] = e,将3放入新数组对应的位置,执行完此轮循环后线程a的情况如下:

Java京东面试题之为什么HashMap线程不安全

执行下一轮循环,此时 e=7,原本线程 a 中 7 的 next 为 5,但由于 table 是线程 a 和线程 b 共享的,而线程 b 顺利执行完后,7 的 next 变成了 3,那么此时线程 a 中,7 的 next 也为 3 了。

采用头部插入的方式,变成了下面这样子:

Java京东面试题之为什么HashMap线程不安全

好像也没什么问题,此时 next = 3,e = 3。

进行下一轮循环,但此时,由于线程 b 将 3 的 next 变为了 null,所以此轮循环应该是最后一轮了。

接下来当执行完 e.next=newtable[i] 即 3.next=7 后,3 和 7 之间就相互链接了,执行完 newtable[i]=e 后,3 被头插法重新插入到链表中,执行结果如下图所示:

Java京东面试题之为什么HashMap线程不安全

套娃开始,元素 5 也就成了弃婴,惨~~~

不过,jdk 8 时已经修复了这个问题,扩容时会保持链表原来的顺序,参照hashmap 扩容机制的这一篇。

02、多线程下 put 会导致元素丢失

正常情况下,当发生哈希冲突时,hashmap 是这样的:

Java京东面试题之为什么HashMap线程不安全

但多线程同时执行 put 操作时,如果计算出来的索引位置是相同的,那会造成前一个 key 被后一个 key 覆盖,从而导致元素的丢失。

put 的源码:

final v putval(int hash, k key, v value, boolean onlyifabsent,
               boolean evict) {
    node<k,v>[] tab; node<k,v> p; int n, i;

    // 步骤①:tab为空则创建
    if ((tab = table) == null || (n = tab.length) == 0)
        n = (tab = resize()).length;

    // 步骤②:计算index,并对null做处理 
    if ((p = tab[i = (n - 1) & hash]) == null)
        tab[i] = newnode(hash, key, value, null);
    else {
        node<k,v> e; k k;

        // 步骤③:节点key存在,直接覆盖value
        if (p.hash == hash &&
            ((k = p.key) == key || (key != null && key.equals(k))))
            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);

                    //链表长度大于8转换为红黑树进行处理
                    if (bincount >= treeify_threshold - 1) // -1 for 1st
                        treeifybin(tab, hash);
                    break;
                }

                // key已经存在直接覆盖value
                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)
                e.value = value;
            afternodeaccess(e);
            return oldvalue;
        }
    }
    ++modcount;

    // 步骤⑦:超过最大容量 就扩容
    if (++size > threshold)
        resize();
    afternodeinsertion(evict);
    return null;
}

问题发生在步骤 ② 这里:

if ((p = tab[i = (n - 1) & hash]) == null)
    tab[i] = newnode(hash, key, value, null);

两个线程都执行了 if 语句,假设线程 a 先执行了 tab[i] = newnode(hash, key, value, null),那 table 是这样的:

Java京东面试题之为什么HashMap线程不安全

接着,线程 b 执行了 tab[i] = newnode(hash, key, value, null),那 table 是这样的:

Java京东面试题之为什么HashMap线程不安全

3 被干掉了。

03、put 和 get 并发时会导致 get 到 null

线程 a 执行put时,因为元素个数超出阈值而出现扩容,线程b 此时执行get,有可能导致这个问题。

注意来看 resize 源码:

final node<k,v>[] resize() {
    node<k,v>[] oldtab = table;
    int oldcap = (oldtab == null) ? 0 : oldtab.length;
    int oldthr = threshold;
    int newcap, newthr = 0;
    if (oldcap > 0) {
        // 超过最大值就不再扩充了,就只好随你碰撞去吧
        if (oldcap >= maximum_capacity) {
            threshold = integer.max_value;
            return oldtab;
        }
        // 没超过最大值,就扩充为原来的2倍
        else if ((newcap = oldcap << 1) < maximum_capacity &&
                 oldcap >= default_initial_capacity)
            newthr = oldthr << 1; // double threshold
    }
    else if (oldthr > 0) // initial capacity was placed in threshold
        newcap = oldthr;
    else {               // zero initial threshold signifies using defaults
        newcap = default_initial_capacity;
        newthr = (int)(default_load_factor * default_initial_capacity);
    }
    // 计算新的resize上限
    if (newthr == 0) {
        float ft = (float)newcap * loadfactor;
        newthr = (newcap < maximum_capacity && ft < (float)maximum_capacity ?
                  (int)ft : integer.max_value);
    }
    threshold = newthr;
    @suppresswarnings({"rawtypes","unchecked"})
        node<k,v>[] newtab = (node<k,v>[])new node[newcap];
    table = newtab;
}

线程 a 执行完 table = newtab 之后,线程 b 中的 table 此时也发生了变化,此时去 get 的时候当然会 get 到 null 了,因为元素还没有转移。

这是《java 程序员进阶之路》专栏的第 58 篇,我们来聊了聊为什么 hashmap 是线程不安全的。

为了便于大家更系统化地学习 java,二哥已经将《java 程序员进阶之路》专栏开源到 github 上了,大家只需轻轻地 star 一下,就可以和所有的小伙伴一起打怪升级了。

github 地址:https://github.com/itwanger/tobebetterjavaer

Java京东面试题之为什么HashMap线程不安全

到此这篇关于java京东面试题之为什么hashmap线程不安全的文章就介绍到这了,更多相关java hashmap线程内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!