Map中的键值对进行遍历

一定要注意泛型的添加


    public static void main(String[] args) {
        Map map = new LinkedHashMap();//使用LinkedHashMap进行存放map的数据
        map.put(1, "a");
        map.put(2, "b");
        map.put(3, "c");
        map.put(4, "d");
        map.put(5, "e");//添加数据
        Set> set = map.entrySet();//将里面的数据存放到set里面,添加泛型Entry
        Iterator> it = set.iterator();//创建set迭代器
        while (it.hasNext()) {
            Entry en=it.next();//创建实体引用
            System.out.println(en.getKey());
            System.out.println(en.getValue());
        }
    }

你可能感兴趣的:(java)