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

  • Post author:
  • Post category:其他


public class 数组中最大的三个数乘积 {
    public static void main(String[] args) {
        //System.out.println(chengji(new int[]{-8,-1,1, 3, 4}));
        // 2.3 数据去重
        List<Student> functionList = Arrays.asList(new Student(21, "大大", "胶带机"),
                new Student(22, "大大", "胶带机"),
                new Student(21, "大大", "胶带机"));
        ArrayList<Student> 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 去重

可以根据


最后更新的时间


来取最后一条改变的数据



版权声明:本文为weixin_61503139原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。