Map遍历的几种方法

Posted xxbai1123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Map遍历的几种方法相关的知识,希望对你有一定的参考价值。

import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Map.Entry;

public class MapUtil {

    public static void main(String[] args) {
        Map<String,Integer> map = new HashMap<String,Integer>();
        map.put("age", 12);
        map.put("sg", 163);
        map.put(null, null);
        bl1(map);
        bl2(map);
        bl3(map);
        bl4(map);
    }



    /**
     * 输出 key value 常用的方法,尤其是容量大时,速度相对快
     * @param map
     */
    private static void bl3(Map<String, Integer> map) {
        Iterator<Entry<String, Integer>> iterator = map.entrySet().iterator();
        while(iterator.hasNext()) {
            Entry<String, Integer> next = iterator.next();
            System.out.println("f3=="+next.getKey());
            System.out.println("f3=="+next.getValue());
        }
    }

    /**
     * 输出 key value 速度也可以
     * @param map
     */
    private static void bl1(Map<String, Integer> map) {
        for(Entry<String, Integer> entry: map.entrySet()) {
            System.out.println("f1=="+entry.getKey());
            System.out.println("f1=="+entry.getValue());
        }
    }
    
    /**
     * 只输出value
     * @param map
     */
    private static void bl4(Map<String, Integer> map) {
        for(Integer value:map.values()) {
            System.out.println("f4=="+value);
        }
    }

    /**
     * 只输出key
     * @param map
     */
    private static void bl2(Map<String, Integer> map) {
        for(String key:map.keySet()) {
            System.out.println("f2=="+key);
        }
    }

}

 

以上是关于Map遍历的几种方法的主要内容,如果未能解决你的问题,请参考以下文章

遍历Map集合的几种方法

Map遍历的几种方法

Map 遍历的几种方法

map的几种遍历方法

遍历Map的几种方式

谈谈java中遍历Map的几种方法