如有一个Person列表,项目中需要根据Person类里面的name属性去重。
List<Person> persons = new ArrayList();
//赋值初始化过程省略
List<Person> uniqueByName = persons.stream().collect(
Collectors.collectingAndThen(
Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(Person::getName))), ArrayList::new)
);
业务场景简单描述:先从数据库取出字段C的值为c的数据列表,再根据字段A=x过滤列表,然后依次根据字段A和字段B进行排序(字段A相同的话,根据字段B排序),最后去重。
代码简单实例:
List<Person> list = objectService.list(new QueryWrapper<Person>().eq(“C”,”c”));
List<Person> after_list=list.stream().filter(Person->Person.getA() == x).collect(Collects.collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(Person::getA).thrnComparing(Person::getB))),ArrayList::new));