如何找到对象的字段,该字段是HashMap中的值?

时间:2019-04-19 09:25:50

标签: java hashmap

我正在尝试检查productId的值是否在HashMap中,但我不知道如何正确处理它。

public static void main(String[] args) {
        HashMap<Storage, HashSet<Product>> myMap = new HashMap<>();
        Storage storage1 = new Storage("101", "1");
        Storage storage2 = new Storage("102", "2");
        HashSet<Product> myProduct = new HashSet<>();
        Product product = new Product("120", "bread", "15");
        myProduct.add(product);
        myMap.put(storage1, myProduct);
        System.out.println(myMap);
        String in = "120";
        List entry = new ArrayList(myMap.values());
        if (entry.contains(in)) {
            System.out.println("true");
        }
    }

存储类和产品类都具有私有字段,构造函数,getter,setter和hashcode,并由IDEA生成相等值。

2 个答案:

答案 0 :(得分:3)

使用Java 8,您可以执行以下操作:

String in = "120";
boolean contains = myMap
    .values().stream()
    .flatMap(Set::stream)
    .anyMatch(p -> p.getId().equals(in)));
System.out.println("Contains? " + contains);

这基本上是“遍历”映射中的值,调用子集上的stream,然后在任何项的id与提供的字符串匹配时返回true,否则返回false

答案 1 :(得分:1)

使用Java 8:

myMap.forEach((k,v) -> {
for (Product p : v) {
    if (p.getValue().equals(in))
        System.out.println(true);
    }
});

编辑:固定答案