排序比较器的方法
时间: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)