首页 > 代码库 > 集合的排序
集合的排序
public static void main (String [] args){ ArrayList <Apple> list = new ArrayList<Apple>();//创建集合,并加入对象 list.add(new Apple("001",22,30)); list.add(new Apple("002",22,40)); list.add(new Apple("003",2,3)); list.add(new Apple("004",10,10)); Collections.sort(list,new Comparator<Apple>(){ //重写sort里的方法 @Override public int compare(Apple o1, Apple o2) { if(o1.zhong-o2.zhong>0){ return 1; }else if (o1.zhong-o2.zhong==0){ if(o1.tiji-o2.tiji>=0){ return 1; }else{ return -1; } }else{ return -1; } } }); for(Apple app:list){ System.out.println(app); } Collections.sort(list,new Comparator<Apple>(){
//重写sort里的方法
@Override public int compare(Apple o1, Apple o2) { if(o2.zhong-o1.zhong>0){ return 1; }else if (o2.zhong-o1.zhong==0){ if(o2.tiji-o1.tiji>=0){ return 1; }else{ return -1; } }else{ return -1; } } }); System.out.println("----------------------------------------------------"); for(Apple app:list){ System.out.println(app); } } }
集合的排序
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。