码迷,mamicode.com
首页 > 编程语言 > 详细

集合的排序

时间:2017-08-08 10:46:40      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:public   system   oid   app   over   arraylist   rgs   compare   blog   

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); } } }

  

集合的排序

标签:public   system   oid   app   over   arraylist   rgs   compare   blog   

原文地址:http://www.cnblogs.com/fy02223y/p/7305086.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!