zoukankan      html  css  js  c++  java
  • 遍历Map的4种方法(来自网络)

    一、遍历Map的4种方法
    在java中所有的map都实现了Map接口,因此所有的Map(如HashMap, TreeMap, LinkedHashMap, Hashtable等)都可以用以下的方式去遍历。
    • 在for循环中使用entries实现Map的遍历: 
    public static void main(String[] args) {
        Map <String,String>map = new HashMap<>();
        map.put("熊大", "棕色");
        map.put("熊二", "黄色");
     
        for(Map.Entry<String, String> entry : map.entrySet()){
            String mapKey = entry.getKey();
            String mapValue = entry.getValue();
            System.out.println(mapKey+":"+mapValue);
        }
    }
    • 在for循环中遍历key或者values,一般适用于只需要map中的key或者value时使用,在性能上比使用entrySet较好;
    public static void main(String[] args) {
        Map <String,String>map = new HashMap<>();
        map.put("熊大", "棕色");
        map.put("熊二", "黄色");
     
        for(String key : map.keySet()){
            System.out.println(key); //熊大
        }
     
        for(String value : map.values()){
            System.out.println(value); //棕色
        }
    }
    • 通过Iterator遍历;
    public static void main(String[] args) {
        Map <String,String>map = new HashMap<>();
        map.put("熊大", "棕色");
        map.put("熊二", "黄色");
     
        Iterator<Map.Entry<String, String>> entries = map.entrySet().iterator();
        while(entries.hasNext()){
            Map.Entry<String, String> entry = entries.next();
            System.out.println(entry.getKey() + ":" + entry.getValue()); //熊大:棕色
        }
    }
    • 通过键找值遍历,这种方式的效率比较低,因为本身从键取值是耗时的操作;
    public static void main(String[] args) {
        Map <String,String>map = new HashMap<>();
        map.put("熊大", "棕色");
        map.put("熊二", "黄色");
     
        for(String key : map.keySet()){
            System.out.println(key + "-->" +map.get(key)); //熊大-->棕色
        }
    }
     
  • 相关阅读:
    详解 final 和 static
    详解 方法的覆盖 —— toString() 与 equals()的覆盖
    详解 继承(上)—— 工具的抽象与分层
    详解 继承(下)—— super关键字 与 多态
    Java 基础讲解
    矩阵 的实现
    C语言 贪吃蛇
    巨大数——三则运算(+、-、*)
    浅谈 循环数组
    人体对电流的反应
  • 原文地址:https://www.cnblogs.com/duomen/p/13245068.html
Copyright © 2011-2022 走看看