繁体   English   中英

通过带有arraylist的hashmap进行迭代?

[英]Iterate through a hashmap with an arraylist?

所以我有一个带有arraylist的基本哈希图:

Map<Text, ArrayList<Text>> map = new HashMap<Text, ArrayList<Text>>();

假设我有一个键值对:键:Apple,值:橙色,红色,蓝色

我已经了解了如何遍历以打印密钥,其值如下:Apple,橙色,红色,蓝色

但是有一种方法可以拆分值/通过内部ArrayList迭代并分别打印键/值对三个时间/分别打印每个值的键,例如:

Apple orange
Apple red
Apple blue

您可以使用嵌套循环:

for (Map.Entry<Text, ArrayList<Text>> entry : map.entrySet()) {
    for (Text text : entry.value()) {
        System.out.println(entry.key() + " " + text);
    }
}

使用简单的for循环,将是:

for (Map.Entry<Text, ArrayList<Text>> entry : map.entrySet()) {
    for (Text text : entry.value()) {
        System.out.println(entry.key() + " " + text);
    }
}

在功能上进行相同的操作:

map.forEach((key, valueList) ->
    valueList.forEach(listItem -> System.out.println(key + " " + listItem)
));

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM