diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e0d8a1cc..f490cc855 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ ------------------------------------------------------------------------------------------------------------- -# 5.8.11.M1 (2022-11-24) +# 5.8.11.M1 (2022-11-26) ### 🐣新特性 * 【core 】 CharUtil.isBlankChar增加\u180e(pr#2738@Github) @@ -11,6 +11,7 @@ * 【json 】 修复普通byte数组转JSONArray时的异常(pr#875@Gitee) * 【core 】 修复ArrayUtil.insert()不支持原始类型数组的问题(pr#874@Gitee) * 【core 】 修复HexUtil.isHexNumber()判断逻辑超出long的精度问题(issue#I62H7K@Gitee) +* 【core 】 修复BiMap中未重写computeIfAbsent和putIfAbsent导致双向查找出问题(issue#I62X8O@Gitee) ------------------------------------------------------------------------------------------------------------- diff --git a/hutool-core/src/main/java/cn/hutool/core/map/BiMap.java b/hutool-core/src/main/java/cn/hutool/core/map/BiMap.java index 9f9f3fd79..3ce87cc9f 100644 --- a/hutool-core/src/main/java/cn/hutool/core/map/BiMap.java +++ b/hutool-core/src/main/java/cn/hutool/core/map/BiMap.java @@ -1,6 +1,8 @@ package cn.hutool.core.map; import java.util.Map; +import java.util.function.BiFunction; +import java.util.function.Function; /** * 双向Map
@@ -45,7 +47,7 @@ public class BiMap extends MapWrapper { @Override public V remove(Object key) { final V v = super.remove(key); - if(null != this.inverse && null != v){ + if (null != this.inverse && null != v) { this.inverse.remove(v); } return v; @@ -83,4 +85,49 @@ public class BiMap extends MapWrapper { public K getKey(V value) { return getInverse().get(value); } + + @Override + public V putIfAbsent(K key, V value) { + if (null != this.inverse) { + this.inverse.putIfAbsent(value, key); + } + return super.putIfAbsent(key, value); + } + + @Override + public V computeIfAbsent(K key, Function mappingFunction) { + final V result = super.computeIfAbsent(key, mappingFunction); + resetInverseMap(); + return result; + } + + @Override + public V computeIfPresent(K key, BiFunction remappingFunction) { + final V result = super.computeIfPresent(key, remappingFunction); + resetInverseMap(); + return result; + } + + @Override + public V compute(K key, BiFunction remappingFunction) { + final V result = super.compute(key, remappingFunction); + resetInverseMap(); + return result; + } + + @Override + public V merge(K key, V value, BiFunction remappingFunction) { + final V result = super.merge(key, value, remappingFunction); + resetInverseMap(); + return result; + } + + /** + * 重置反转的Map,如果反转map为空,则不操作。 + */ + private void resetInverseMap() { + if (null != this.inverse) { + inverse = null; + } + } } diff --git a/hutool-core/src/test/java/cn/hutool/core/map/BiMapTest.java b/hutool-core/src/test/java/cn/hutool/core/map/BiMapTest.java index 5b45a8ca3..a26816b64 100644 --- a/hutool-core/src/test/java/cn/hutool/core/map/BiMapTest.java +++ b/hutool-core/src/test/java/cn/hutool/core/map/BiMapTest.java @@ -9,7 +9,7 @@ public class BiMapTest { @Test public void getTest(){ - BiMap biMap = new BiMap<>(new HashMap<>()); + final BiMap biMap = new BiMap<>(new HashMap<>()); biMap.put("aaa", 111); biMap.put("bbb", 222); @@ -19,4 +19,26 @@ public class BiMapTest { Assert.assertEquals("aaa", biMap.getKey(111)); Assert.assertEquals("bbb", biMap.getKey(222)); } + + @Test + public void computeIfAbsentTest(){ + final BiMap biMap = new BiMap<>(new HashMap<>()); + biMap.put("aaa", 111); + biMap.put("bbb", 222); + + biMap.computeIfAbsent("ccc", s -> 333); + Assert.assertEquals(new Integer(333), biMap.get("ccc")); + Assert.assertEquals("ccc", biMap.getKey(333)); + } + + @Test + public void putIfAbsentTest(){ + final BiMap biMap = new BiMap<>(new HashMap<>()); + biMap.put("aaa", 111); + biMap.put("bbb", 222); + + biMap.putIfAbsent("ccc", 333); + Assert.assertEquals(new Integer(333), biMap.get("ccc")); + Assert.assertEquals("ccc", biMap.getKey(333)); + } }