首页 > 代码库 > 对HashMap的value排序
对HashMap的value排序
HashMap<String,Long> sMap = new HashMap<String,Long>();
sMap.put("张三", 90L);
sMap.put("李四", 79L);
sMap.put("王五", 88L);
sMap.put("赵六", 76L);
ArrayList<Entry<String,Long>> list = new ArrayList<Entry<String,Long>>(sMap.entrySet());
Collections.sort(list, new Comparator<Object>(){
public int compare(Object e1, Object e2){
int v1 = Integer.parseInt(((Entry<String,Long>)e1).getValue().toString());
int v2 = Integer.parseInt(((Entry)e2).getValue().toString());
return v2-v1;
}
});
for (Entry<String, Long> e : list){
System.out.println(e.getKey()+" "+e.getValue());
sMap.put("张三", 90L);
sMap.put("李四", 79L);
sMap.put("王五", 88L);
sMap.put("赵六", 76L);
ArrayList<Entry<String,Long>> list = new ArrayList<Entry<String,Long>>(sMap.entrySet());
Collections.sort(list, new Comparator<Object>(){
public int compare(Object e1, Object e2){
int v1 = Integer.parseInt(((Entry<String,Long>)e1).getValue().toString());
int v2 = Integer.parseInt(((Entry)e2).getValue().toString());
return v2-v1;
}
});
for (Entry<String, Long> e : list){
System.out.println(e.getKey()+" "+e.getValue());
}
输出结果:
张三 90
王五 88
李四 79
赵六 76
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。