hashmap顺序遍历_遍历排序

2022-09-30 11:20:43 浏览数 (1)

大家好,又见面了,我是你们的朋友全栈君。

hashmap元素排序 想要hashmap中的元素有序可以使用linkedHashMap。

代码语言:javascript复制
HashMap<Integer, User> hashMap = new HashMap<>();
hashMap.put(1,new User("张三",32));
hashMap.put(2,new User("张四",33));
hashMap.put(3,new User("王五",22));
//将map转换为一个entry类型的list,调用comparator进行排序。再返回linkedHashMap。
List<Map.Entry<Integer,User>> list = new ArrayList<Map.Entry<Integer,User>>(entey);
Collections.sort(list, new Comparator<Map.Entry<Integer, User>>() { 

@Override
public int compare(Map.Entry<Integer, User> o1, Map.Entry<Integer, User> o2) { 

//按照age倒敘排列
return o2.getValue().getAge()-o1.getValue().getAge();
}
});
//創建一個HashMap的子類LinkedHashMap集合
LinkedHashMap<Integer,User> linkedHashMap = new LinkedHashMap<Integer,User>();
//將list中的數據存入LinkedHashMap中
for(Map.Entry<Integer,User> entry:list){ 

linkedHashMap.put(entry.getKey(),entry.getValue());
}
return linkedHashMap;}

HashMap的遍历。

代码语言:javascript复制
Map<String, String> map = new HashMap<String, String>();
map.put("1", "value1");
map.put("2", "value2");
map.put("3", "value3");
//第一种:普遍使用,二次取值
System.out.println("通过Map.keySet遍历key和value:");
for (String key : map.keySet()) { 

System.out.println("key= "  key   " and value= "   map.get(key));
}
//第二种
System.out.println("通过Map.entrySet使用iterator遍历key和value:");
Iterator<Map.Entry<String, String>> it = map.entrySet().iterator();
while (it.hasNext()) { 

Map.Entry<String, String> entry = it.next();
System.out.println("key= "   entry.getKey()   " and value= "   entry.getValue());
}
//第三种:推荐,尤其是容量大时
System.out.println("通过Map.entrySet遍历key和value");
for (Map.Entry<String, String> entry : map.entrySet()) { 

System.out.println("key= "   entry.getKey()   " and value= "   entry.getValue());
}
//第四种
System.out.println("通过Map.values()遍历所有的value,但不能遍历key");
for (String v : map.values()) { 

System.out.println("value= "   v);
}

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

0 人点赞