我正在玩数组和枚举,我想知道创建 Comparator 类以降序对这些日期进行排序的最有效方法是什么。这是我的代码。
public enum Month {JAN(1), FEB(2), MAR(3), APR(4), MAY(5), JUN(6), JUL(7),
AUG(8), SEPT(9), OCT(10), NOV(11), DEC(12);
final int monthBoundary;
Month(int y){
monthBoundary=y;}
}
public enum Date {FIRST(1), SECOND(2), THIRD(3), FORTH(4),
FIFTH(5)... THIRTYFIRST(31);
final int dateBoundary;
Date(int z){
dateBoundary=z;}
}
//constructor etc here
private static final List<Cal> calendar = new ArrayList<Cal>();
static {
for (Month month : Month.values()) {
for (Date date : Date.values()) {
calendar.add(new Cal(date, month));
}
}
}
//creates new calendar dates
public static ArrayList<Cal> newCal() {
return new ArrayList<Cal>(calendar);
}
使用以下语句,我可以按创建的顺序打印数组。
System.out.print(Card.calendar());
您如何创建一个 Comparator 类来按降序对这些日期进行排序?理想情况下,我希望它对数组进行排序,无论它已经按顺序还是随机顺序。在这个阶段,我不关心不存在的日期(例如 2 月 31 日),因为我只是在练习和自学......只是想了解这个概念:)谢谢。
添加:
public ArrayList<Cal> sortDescending(ArrayList<Cal> calList){
Comparator<Cal> c = Collections.reverseOrder();
Collections.sort(calList, c);
return calList;
}