大家好,又见面了,我是你们的朋友全栈君。
每次忘记怎么写了都去百度,在此记录一下
public static void main(String[] args) {
// 循环遍历Map的4中方法
Map map = new HashMap();
map.put(1, 2);
// 1. entrySet遍历,在键和值都需要时使用(最常用)
for (Map.Entry entry : map.entrySet()) {
System.out.println(“key = ” entry.getKey() “, value = ” entry.getValue());
}
// 2. 通过keySet或values来实现遍历,性能略低于第一种方式
// 遍历map中的键
for (Integer key : map.keySet()) {
System.out.println(“key = ” key);
}
// 遍历map中的值
for (Integer value : map.values()) {
System.out.println(“key = ” value);
}
// 3. 使用Iterator遍历
Iterator> it = map.entrySet().iterator();
while (it.hasNext()) {
Map.Entry entry = it.next();
System.out.println(“key = ” entry.getKey() “, value = ” entry.getValue());
}
// 4. java8 Lambda
// java8提供了Lambda表达式支持,语法看起来更简洁,可以同时拿到key和value,
// 不过,经测试,性能低于entrySet,所以更推荐用entrySet的方式
map.forEach((key, value) -> {
System.out.println(key “:” value);
});
}
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/127730.html原文链接:https://javaforall.cn