Stream中利用collectingAndThen对对象集合进行去重

Stream中利用collectingAndThen对对象集合进行去重_第1张图片

public class 数组中最大的三个数乘积 {
    public static void main(String[] args) {
        //System.out.println(chengji(new int[]{-8,-1,1, 3, 4}));
        // 2.3 数据去重
        List functionList = Arrays.asList(new Student(21, "大大", "胶带机"),
                new Student(22, "大大", "胶带机"),
                new Student(21, "大大", "胶带机"));
        ArrayList collect = functionList.stream().collect(Collectors.
                collectingAndThen(Collectors.toCollection(() ->
                        new TreeSet<>(Comparator.comparing(Student::getGrade))), ArrayList::new));

        System.out.println(collect);
    }

参考文献:

(372条消息) 使用Java8 Stream流中的Collectors.collectingAndThen()方法去重_小王要认真!的博客-CSDN博客_collectingandthen 去重

Stream中利用collectingAndThen对对象集合进行去重_第2张图片

 Stream中利用collectingAndThen对对象集合进行去重_第3张图片

 可以根据最后更新的时间来取最后一条改变的数据

你可能感兴趣的:(java,算法,c++)