数组-对引用类型的排序-冒泡法

对数组的引用类型(类的对象)进行排序

1.注意要重写toString方法









public class DateSort {
public static void main(String[] args){
	Date[] days = new Date[5];
	days[0] = new Date(2016, 5, 4);
	days[1] = new Date(2016, 7, 4);
	days[2] = new Date(2018, 5, 4);
	days[3] = new Date(2010, 5, 9);
	days[4] = new Date(2010, 5, 4);
	Date d = new Date(2016, 7, 4);
	
	bubbleSort(days);								//调用排序的方法
	
	for(int i=0; i<days.length; i++){				//打印排序后的顺序
		System.out.println(days[i]);
	}	
}
public static void bubbleSort(Date[] a){
	int len = a.length;
	for(int i = len-1; i >= 1; i--){				//冒泡法排序
		for(int j = 0; j<= i-1; j++){
			if( a[j].compare(a[j+1]) >0) {
				Date temp = a[j];
				a[j] = a[j+1];
				a[j+1] = temp;
			}
		}
	}
}
}

class Date{
	int year, month, day;	
	
	Date(int x, int y, int z){
		year = x; month = y; day = z;
	}
	
	public int compare(Date date){
		 return 	year > date.year ? 1			//比较前后两个日期谁大
		           : year < date.year ? -1
		           : month > date.month ? 1
		           : month < date.month ? -1
		           : day > date.day ? 1
		           : day < date.day ? -1 : 0;
				
	}
	
	public String toString(){						//重写toString方法,否则返回的是days[]的哈希码
		return "Year:Month:Day--"+ year + "-" + month + "-" + day;
	}
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值