Java - Iterating over a Map which contains a List(Java - 遍历包含列表的地图)
问题描述
第一次来这里,所以我希望这是有道理的!
First time here so I hope this makes sense!
我有一个 Map,其中包含一个字符串作为它的键,以及一个字符串列表作为它的值.我需要遍历地图中每个列表中包含的所有变量.
I have a Map which contains a String as it's Key, and a List of Strings as it's Value. I need to iterate over all vlaues contained within each List within the Map.
所以,首先我想获得有效的密钥:
So, first I want to get the Keys, which works:
Set<String> keys = theMap.keySet();
这将返回一个包含我所有密钥的集合.太好了:)
This returns me a Set containing all my Keys. Great :)
这是我卡住的地方 - 网络上的大多数信息似乎都假设我希望从 Key 返回的值是一个简单的 String 或 Integer,而不是另一个 Set,或者在这种情况下是一个列表.我尝试了 theMap.values()
但这不起作用,我尝试了一个 forloop/for:eachloop,但这些都没有成功.
This is where I've got stuck - most of the info on the web seems to assume that the values I'd want returned from the Key would be a simple String or Integer, not another Set, or in this case a List. I tried theMap.values()
but that didn't work, and I tried a forloop / for:eachloop, and neither of those did the trick.
谢谢大家!
推荐答案
for(List<String> valueList : map.values()) {
for(String value : valueList) {
...
}
}
这才是真正的正常".方法来做到这一点.或者,如果您也需要密钥...
That's really the "normal" way to do it. Or, if you need the key as well...
for(Map.Entry<String, List<String>> entry : map.entrySet()) {
String key = entry.getKey();
for (String value : entry.getValue()) {
...
}
}
也就是说,如果您可以选择,您可能会对 Guava 的 ListMultimap
,这是一个很像 Map<K, List<V>>
,但有更多的功能——包括 Collection<V>values()
的行为与您所要求的完全一样,扁平化";多重映射中的所有值到一个集合中.(披露:我为 Guava 做出了贡献.)
That said, if you have the option, you might be interested in Guava's ListMultimap
, which is a lot like a Map<K, List<V>>
, but has a lot more features -- including a Collection<V> values()
that acts exactly like what you're asking for, "flattening" all the values in the multimap into one collection. (Disclosure: I contribute to Guava.)
这篇关于Java - 遍历包含列表的地图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java - 遍历包含列表的地图


- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01