服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - JDK1.8中ConcurrentHashMap中computeIfAbsent死循环bug问题

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

2020-08-21 00:22Honey_Badger Java教程

这篇文章主要介绍了JDK1.8中ConcurrentHashMap中computeIfAbsent死循环bug,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

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

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

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

computeIfAbsent在1.8中才有的方法

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

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

debug

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

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

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

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

总结

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

原文链接:https://www.cnblogs.com/tk55/archive/2020/08/20/13534108.html

延伸 · 阅读

精彩推荐