Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个日期数组列表,我想按日期按升序和降序对其进行排序。任何人都可以为此提供完整的代码片段吗?我见过很多这样的问题,但找不到合适的答案。
列表会是这样的
List<Date> dates= new ArrayList<Date>();
任何形式的帮助将不胜感激,非常感谢,
由于Date已经实现了 Comparable,您可以简单地使用:
Date
Collections.sort(dates);
升序排序,降序排序:
Collections.sort(dates, Collections.reverseOrder());