Java中Stream流去除List重复元素的方法

单条件去重代码

rrayList<listData> collect = list.stream().collect(Collectors.collectingAndThen(
          Collectors.toCollection(() -> new TreeSet<>(
            Comparator.comparing(
        listData::getId))), ArrayList::new));
posted @ 2022-06-24 15:50  西门长海  阅读(1259)  评论(0编辑  收藏  举报