JDK1.8中ConcurrentHashMap中computeIfAbsent死循环bug问题

死循环问题的提出:https://bugs.openjdk.java.net/browse/JDK-8062841

map.computeIfAbsent("AaAa",key->map.computeIfAbsent("BBBB",key2->42));

JDK1.8中ConcurrentHashMap中computeIfAbsent死循环bug问题_第1张图片

computeIfAbsent在1.8中才有的方法

JDK1.8中ConcurrentHashMap中computeIfAbsent死循环bug问题_第2张图片

computeIfAbsent意思是:key不存在时候,调用mappingFunction函数结果作为value值

debug

JDK1.8中ConcurrentHashMap中computeIfAbsent死循环bug问题_第3张图片JDK1.8中ConcurrentHashMap中computeIfAbsent死循环bug问题_第4张图片

两个key的hash值一样,跑到同一个槽里面,然后一直死循环for

JDK1.8中ConcurrentHashMap中computeIfAbsent死循环bug问题_第5张图片

总结

到此这篇关于JDK1.8中ConcurrentHashMap中computeIfAbsent死循环bug的文章就介绍到这了,更多相关JDK1.8 ConcurrentHashMap computeIfAbsent死循环内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(JDK1.8中ConcurrentHashMap中computeIfAbsent死循环bug问题)