Java8-Stream流操作List去重

根据属性去重整体去重使用
distinct


         ArrayList<LabelInfoDTO> collect = labelInfoDTOS.stream().
                        collect(Collectors.collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(LabelInfoDTO::getLabelCode))), ArrayList::new));
                

你可能感兴趣的:(Java,--,工具,java)