导读


由于项目需要,需要获取集合对象中最小和最大时间。

使用


获取list中日期最大的对象

  1. Optional<User> max = collect.stream().max(Comparator.comparing(User::getBirthday));
  2. User user = max.get();

[

](https://blog.csdn.net/JGMa_TiMo/article/details/109817647)
获取list中日期最小的对象

  1. Optional<User> max = collect.stream().min(Comparator.comparing(User::getBirthday));
  2. User user = max.get();

END


搞定~