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

获取map集合中键和值的三种方式

时间:2019-05-20 22:37:30      阅读:406      评论:0      收藏:0      [点我收藏+]

标签:div   set集合   val   highlight   next   hashmap   integer   sharp   sys   

 

//创建一个map集合
HashMap<String, Integer> map = new HashMap<>();
//添加元素
map.put("小王",25);
map.put("小张",35);
map.put("小李",20);

方法一:用增强for循环
//用keyset()方法获取所有的键
Set<String> keys = map.keySet();
for(String s:keys){
    Integer value = map.get(s);
    System.out.print(s+" ");
    System.out.print(value+" ");
}
方法二:用迭代器
//用keyset()方法获取所有的键
Set<String> keys = map.keySet();
//获取迭代器
Iterator<String> it = keys.iterator();
while(it.hasNext()){
    String key = it.next();
    Integer value = map.get(key);
    System.out.println(key+"******"+value);
}
方法三:使用EntrySet()方法
//用EntrySet()方法把成对儿的键值放入到Set集合中
Set<Map.Entry<String, Integer>> entry = map.entrySet();
//for循环遍历
for(Map.Entry s:entry){
String key = (String)s.getKey();
int value = (int)s.getValue();
System.out.println(key+"*****"+value);
}

  

获取map集合中键和值的三种方式

标签:div   set集合   val   highlight   next   hashmap   integer   sharp   sys   

原文地址:https://www.cnblogs.com/Hubert-dzl/p/10897007.html

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