当前位置: 代码迷 >> 综合 >> jdk 8 ConcurrentHashMap computeIfAbsent 里面也有死循环
  详细解决方案

jdk 8 ConcurrentHashMap computeIfAbsent 里面也有死循环

热度:24   发布时间:2023-11-25 08:23:21.0

建议使用的时候要避免key的hashcode重复,如果一样是会发生死循环的。
例子:
Map<String, Integer> map = new ConcurrentHashMap<>(16);
map.computeIfAbsent(
“AaAa”,
key -> {
return map.computeIfAbsent(
“BBBB”,
key2 -> 42);
}
);
先调用了 get 方法,如果返回为 null,则调用 putIfAbsent 方法,这样就能不会有问题了。
改:
if(map.get(“BBBB”)==null){
map.computeIfAbsent(
“BBBB”,
key2 -> 42);
}
map.computeIfAbsent( “AaAa”,
key -> {
return map.get(“BBBB”);
});

  相关解决方案