gpt4 book ai didi

Java 多个映射检查是否包含

转载 作者:行者123 更新时间:2023-12-02 04:55:39 25 4
gpt4 key购买 nike

我有大约 30 个 HashMap 数据,并且遇到了一种情况,我需要检查某个值是否存在于任何一个 hashmap 中。

例如

if (map1.contains(value)){ //remove the value with map1.remove() }
if (map2.contains(value)){ //remove the value with map2.remove() }
if (map3.contains(value)){ //remove the value with map3.remove() }
//and so on

我可以这样做 30 次,但我不确定这样做的效率如何,有没有更干净的方法来做到这一点?任何帮助将不胜感激,谢谢。

最佳答案

30 个 map 很难,我不知道你的用例。

您可以将其保存在列表中并对其进行迭代,但您应该重构该类。

List<Map<String, Object>> testList = new ArrayList<>();
...//add maps

for(Map<String, Object> map : testList){
map.containsKey(...)
}

关于Java 多个映射检查是否包含,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28797362/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com