首页 > 其他 > 详细

map集合中的键值对对象遍历

时间:2018-05-13 23:28:19      阅读:186      评论:0      收藏:0      [点我收藏+]

package com.day15.Map;

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

/*
* map集合中的第二种遍历方式
*/
public class MapFour {

  public static void main(String[] args) {
    Map<String, Integer> ma=new HashMap<>();
    ma.put("Kobe",20);
    ma.put("KG",21);
    ma.put("PP",22);
    ma.put("Allen",23);
    //Map.Entry说明Entry是Map的内部接口,将键和值封装成了Entry对象,并存储在Set集合中
    Set<Map.Entry<String,Integer>> es=ma.entrySet();
    //获取每一个对象
    Iterator<Map.Entry<String,Integer>> it=es.iterator();
    while(it.hasNext()) {
      Map.Entry<String, Integer> en=it.next();
      String key=en.getKey();
      Integer value=en.getValue();
      System.out.print(key+"="+value);//PP=22Kobe=20KG=21Allen=23
    }
  }

}

map集合中的键值对对象遍历

原文:https://www.cnblogs.com/zhujialei123/p/9033893.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!