- List<对象>按照时间倒叙排序
// 比如userList有多条数据,是从数据库中查询出来的结果
List<User> userList = new ArrayList();
// 按照User对象的updateTiem倒叙排序
userList.stream().sorted(Comparator.comparing(User::getUpdateTime).reversed()).collect(Collectors.toList());
// 比如userList有多条数据,是从数据库中查询出来的结果
List<User> userList = new ArrayList();
// 按照User对象的updateTiem倒叙排序
userList.stream().sorted(Comparator.comparing(User::getUpdateTime).reversed()).collect(Collectors.toList());