List<Integer>排序
作者:互联网
有的时候,我们需要将数据进行排序处理好以后,再进行一些业务操作。
java List<Integer>排序无非就是从小到大,或者从大到小,
List<Integer> list = new ArrayList<Integer>();
从小到大方法:Collections.sort(list);
从大到小方法:Collections.sort(list,Collections.reverseOrder());
转:
https://www.cnblogs.com/cyb-652356/p/10706017.html
标签:sort,List,list,Collections,从大到,排序 来源: https://www.cnblogs.com/jiduoduo/p/15057756.html