码迷,mamicode.com
首页 > 其他好文 > 详细

Map遍历的几种方法

时间:2018-12-31 18:55:41      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:values   port   keyset   null   nbsp   span   put   速度   shm   

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遍历的几种方法

标签:values   port   keyset   null   nbsp   span   put   速度   shm   

原文地址:https://www.cnblogs.com/xxbai1123/p/10202467.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!