Map遍历之Entry

让人想犯罪 __ 提交于 2020-02-27 02:26:19

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);
        }




    }
}

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!