作者:然然妈1 | 来源:互联网 | 2024-11-05 15:30
本文探讨了如何利用Java8StreamAPI对数组进行高效排序和筛选处理。具体而言,通过`stream()`方法将`listResult`转换为流,然后使用`sorted(Comparator.comparing())`方法按伴随度进行降序排序,并最终收集结果。此外,还介绍了如何结合过滤条件进一步优化数据处理流程,提升代码的可读性和执行效率。
//对listResult进行排序,根据伴随度进行降序
List collect = listResult.stream()
.sorted(Comparator.comparing(FollowIMSI::getFollowDegree).reversed())
.collect(Collectors.toList());
根据集合中对象FollowIMSI中的伴随度进行倒序排列…reversed(),默认正序,reversed反转后即倒序;
List firstA = listEntity.stream()
.filter(collisionEntity -> collisionEntity.getMatchNums() >= 2)
.collect(Collectors.toList());
过滤,过滤掉collisionEntity中匹配次数多于两次的结果,firstA中存放的都是多于两次的
List result = firstA.stream()
.sorted(Comparator.comparing(CollisionEntity::getMatchNums))
.collect(Collectors.toList());//根据matchnums排序
根据匹配次数正序排列,从小到大.