Chinaunix首页 | 论坛 | 博客
  • 博客访问: 138689
  • 博文数量: 46
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 300
  • 用 户 组: 普通用户
  • 注册时间: 2014-03-15 23:00
文章分类

全部博文(46)

文章存档

2018年(18)

2017年(11)

2015年(14)

2014年(3)

我的朋友

分类: Java

2018-01-20 14:16:56


点击(此处)折叠或打开

  1. /**
  2.      * 使用 Map按key进行排序
  3.      * @param
  4.      * @param map
  5.      * @return
  6.      */
  7.     public static <T> Map<Integer,T> sortMapByKeyInteger(Map<Integer,T> map) {
  8.         if (map == null || map.isEmpty()) {
  9.             return null;
  10.         }
  11.         Map<Integer,T> sortMap = new TreeMap<Integer,T>(new MapKeyComparator());
  12.         sortMap.putAll(map);
  13.         return sortMap;
  14.     }
MapKeyComparator类

点击(此处)折叠或打开

  1. class MapKeyComparator implements Comparator<Integer> {
  2.     @Override
  3.     public int compare(Integer o1, Integer o2) {
  4.         return o1.compareTo(o2);
  5.     }
  6. }

阅读(1163) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~