zl程序教程

您现在的位置是:首页 >  其他

当前栏目

List使用stream进行去重

2023-04-18 15:49:50 时间
根据某一字段进行去重
List<Entity> arrays = arr.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(Entity :: getId))), ArrayList::new));