遍历Map的几种方式

遍历Map的几种方式

/**
 * map的遍历方式
 */
public class Iteration {
    public static void main(String[] args) {
        Map<String, String> map = new HashMap<>();
        map.put("a", "a");
        map.put("b", "b");
        map.put("c", "c");
        map.put("d", "d");

        // 第一种使用keySet遍历
        System.out.println("-------------------第一种使用keySet遍历-------------------");
        for (String key : map.keySet()) {
            System.out.println("key: " + key + ",value: " + map.get(key));
        }

        // 第二种使用values遍历values值
        System.out.println("-------------------第二种使用values遍历-------------------");
        for (String value : map.values()) {
            System.out.println("value: " + value);
        }

        // 第三种使用entrySet遍历
        System.out.println("-------------------第三种使用entrySet遍历-------------------");
        for (Map.Entry<String, String> entry : map.entrySet()) {
            System.out.println("key: " + entry.getKey() + ", value: " + entry.getValue());
        }

        // 第四种使用Iterator遍历
        System.out.println("-------------------第四种使用Iterator遍历-------------------");
        Iterator<Map.Entry<String, String>> iterator = map.entrySet().iterator();
        while (iterator.hasNext()) {
            Map.Entry<String, String> entry = iterator.next();
            System.out.println("key: " + entry.getKey() + ", value: " + entry.getValue());
        }

        // 第五种使用Lambda遍历
        System.out.println("-------------------第五种使用Lambda遍历-------------------");
        map.forEach((key, value) -> System.out.println("key: " + key + ", value: " + value));
    }
}

版权声明:本文为weixin_40070355原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。