Entry是Map接口的一个内部接口,作用是当Map集合一创建,就会在Map集合中创建一个Entry对象,用来记录键和值(键值和对象,键和值的映射关系)
Map集合遍历的第二中方式:使用Entry进行遍历
Map集合中的方法:
Set<Map.Entry<K,V>> entrySet() 返回此映射中包含的映射关系的set视图1、使用Map集合中的方法entrySet(),把Map集合中多个Entry对象取出来,存储到一个set集合中
2、遍历set集合,获取每一个Entry对象
3、使用Entry对象中的getKey()和getValue()获取键和值
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
public class demo3Entry {
public static void main(String[] args){
//创建map集合对象
Map<String,Integer> map = new HashMap<>();
map.put("诸葛亮",1);
map.put("刘伯温",2);
map.put("张良",3);
map.put("东方朔",4);
//1、使用Map集合中的方法entrySet(),把Map集合中多个Entry对象取出来,存储到一个set集合中
Set<Map.Entry<String,Integer>> set = map.entrySet();
//2、遍历set集合,获取每一个Entry对象
//使用迭代器遍历set集合
Iterator<Map.Entry<String,Integer>> iterator = set.iterator();
while(iterator.hasNext()){
Map.Entry<String,Integer> entry = iterator.next();
//3、使用Entry对象中的getKey()和getValue()获取键和值
String key = entry.getKey();
Integer value = entry.getValue();
System.out.println(key+"------"+value);
}
System.out.println("-------------------------------");
for (Map.Entry<String,Integer> entry:set){
//3、使用Entry对象中的getKey()和getValue()获取键和值
String key = entry.getKey();
Integer value = entry.getValue();
System.out.println(key+"------"+value);
}
}
}
来源:CSDN
作者:有朝一日刀在手
链接:https://blog.csdn.net/qq_41628448/article/details/104518238