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 去重
文章来源:https://www.toymoban.com/news/detail-617488.html
可以根据最后更新的时间来取最后一条改变的数据文章来源地址https://www.toymoban.com/news/detail-617488.html
到了这里,关于Stream中利用collectingAndThen对对象集合进行去重的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!