java8对list的根据参数过滤重复对象
warning:
这篇文章距离上次修改已过536天,其中的内容可能已经有所变动。
记录一下
listUser.stream().collect(
collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(User::getId))), ArrayList::new));
返回值是个ArrayList集合
:pen:爬爬爬