标签:java8 list排序 显示 span 存在 特性 创建 ted 图片
在java中常常会遇到这样一个问题,在实际应用中,总会碰到对List排序并过滤重复的问题,如果List中放的只是简单的String类型过滤so easy,但是实际应用中并不会这么easy,往往List中放的是一个类,类中有多个属性,要过滤重复数据,而且这个重复数据要按自己指定的属性过滤,但是要想按照其它属性排序顺序过滤,所以要先排序一下,然后按照某个属性过滤。
1 //先按日期从小到大排序,再按功率从大到小,之后放入集合中过滤重复,返回List 2 graphResults = graphResults.stream().sorted(Comparator.comparing(GraphResult::getDate) 3 .thenComparing((o1, o2) -> Integer.compare(o2.getPv1Power(), o1.getPv1Power())) 4 .thenComparing((o1, o2) -> Integer.compare(o2.getPv2Power(), o1.getPv2Power()))) 5 .collect(Collectors.collectingAndThen(Collectors.toCollection(() -> 6 new TreeSet<>(Comparator.comparing(GraphResult::getDate))), ArrayList::new));//过滤重复时间点
手把手教你如何用java8新特性将List中按指定属性排序,过滤重复数据
标签:java8 list排序 显示 span 存在 特性 创建 ted 图片
原文地址:https://www.cnblogs.com/longmaodaxia/p/11308333.html