在 Java 5 及更高版本中迭代 java.util.Map 的所有键/值对的最简单方法是什么?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/585654/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-11 16:33:00 来源:igfitidea点击:
What is the easiest way to iterate over all the key/value pairs of a java.util.Map in Java 5 and higher?
提问by flybywire
What is the easiest way to iterate over all the key/value pairs of a java.util.Map in Java 5 and higher?
在 Java 5 及更高版本中迭代 java.util.Map 的所有键/值对的最简单方法是什么?
采纳答案by Joachim Sauer
Assuming K
is your key type and V
is your value type:
假设K
是你的键类型,V
是你的值类型:
for (Map.Entry<K,V> entry : map.entrySet()) {
K key = entry.getKey();
V value = entry.getValue();
// do stuff
}