摘要: //需要排序的list List list= new ArrayList(); //开始排序 Collections.sort(list, new Comparator(){ public int compare(T o1, T o2) { //排序属性 if(o1.getNum() < o2.getNum... 阅读全文
posted @ 2018-12-25 09:38 铅笔coding 阅读(10192) 评论(0) 推荐(1)