排序比较器的方法

时间:2021-07-05 18:56:31   收藏:0   阅读:0

使用lambda表达式

Collections.sort(List, (a,b) ->  x1 - x2);

自定义Comparator方法

Collections.sort(List, new Comparator<E>(){
    public int compare(int a, int b){
      return a - b;
    }
});

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!