当前位置:网站首页>函数式接口,方法引用,Lambda实现的List集合排序小工具
函数式接口,方法引用,Lambda实现的List集合排序小工具
2022-07-04 14:30:00 【人形bug制造机9527】
1.在Java8中引入了一个函数式接口Consumer的对象,该对象可以把方法作为参数进行传递。
关于lambda的教程
/** * 集合排序 */
@AllArgsConstructor
public class CollSort {
// 排序因子
private final Long order;
public final static CollSort DESC = new CollSort(-1L);
public final static CollSort ASC = new CollSort(1L);
// 根据数字排序
public <E> Collection<E> sort(Collection<E> collection, ProcessorNumber<E> getParam) {
return collection.stream()
.filter(Objects::nonNull)
.sorted((o1, o2) -> {
// 这里执行传入的抽象方法,并传入函数方法需要的参数,
// getParam的返回值已经在抽象函数方法中确定了
long result = Long.parseLong(String.valueOf(getParam.accept(o1))) - Long.parseLong(String.valueOf(getParam.accept(o2)));
result = result * order; // 排序系数介入
return result == 0 ? 0 : result < 0 ? -1 : 1;
})
.collect(Collectors.toList());
}
// 根据时间排序
public <E> Collection<E> sort(Collection<E> collection, ProcessorDate<E> getParam) {
return collection.stream()
.filter(Objects::nonNull) // 无效数据过滤
.sorted((o1, o2) -> {
long t1 = getParam.accept(o1).getTime(); // 这里抽象方法getParam的返回值已经在抽象函数方法中确定了
long t2 = getParam.accept(o2).getTime();
long result = t1 - t2;
result = result * order; // 排序系数介入
return result == 0 ? 0 : result < 0 ? -1 : 1;
})
.collect(Collectors.toList());
}
}
@FunctionalInterface
interface ProcessorDate<E> {
/** * 获取对象时间属性的抽象函数方法 * * @param t 对象 * @return 对象的时间属性 */
Date accept(E t);
}
@FunctionalInterface
interface ProcessorNumber<E> {
/** * 获取对象数字属性的抽象函数方法 * * @param t 对象 * @return 对象的数字属性 */
Number accept(E t);
}
使用
public static void main(String[] args) {
SortTest sortTest = new SortTest();
ArrayList<User> users = new ArrayList<>();
users.add(new User("zz", 14,new Date()));
users.add(new User("zz", 17,new Date(System.currentTimeMillis()+1000000)));
users.add(new User("zz", 11,new Date(System.currentTimeMillis()+4000000)));
users.add(new User("zz", 15,new Date(System.currentTimeMillis()+9000000)));
users.add(new User("zz", 21,new Date(System.currentTimeMillis()+8000000)));
users.add(new User("zz", 7,new Date(System.currentTimeMillis()+3000000)));
sortTest.test(users);
}
public void test(List<User> users) {
// 就普通的工具方法调用,区别就是参数是一个方法,也可以直接引用方法
Collection<User> ageSort = CollSort.ASC.sort(users, User::getAge);
System.out.println("年龄排序=========================");
ageSort.forEach(System.out::println);
System.out.println("生日排序排序======================");
Collection<User> timeSort = CollSort.DESC.sort(users, User::getBirthDay);
timeSort.forEach(System.out::println);
}
效果
可以根据需求自行拓展函数接口,需要注意参数类型
和返回值类型
,大多数时候更换返回值类型就可以了;
参数类型以及返回值类型影响这个函数方法在调用的时候需要传入的参数,以及响应值
边栏推荐
- 开源人张亮的 17 年成长路线,热爱才能坚持
- Huawei cloud database DDS products are deeply enabled
- [differential privacy and data adaptability] differential privacy code implementation series (XIV)
- Guitar Pro 8win10最新版吉他学习 / 打谱 / 创作
- Flutter reports an error no mediaquery widget ancestor found
- How to build a technical team that will bring down the company?
- Live broadcast preview | PostgreSQL kernel Interpretation Series II: PostgreSQL architecture
- Helix Swarm中文包发布,Perforce进一步提升中国用户体验
- Leetcode 1200 minimum absolute difference [sort] the way of leetcode in heroding
- %f格式符
猜你喜欢
对话龙智高级咨询顾问、Atlassian认证专家叶燕秀:Atlassian产品进入后Server时代,中国用户应当何去何从?
Unity动画Animation Day05
Ffprobe common commands
Unity脚本常用API Day03
暑期复习,一定要避免踩这些坑!
How to handle exceptions in multithreading?
产品好不好,谁说了算?Sonar提出分析的性能指标,帮助您轻松判断产品性能及表现
MySQL learning notes - data type (numeric type)
Luo Gu - some interesting questions 2
Go zero micro service practical series (IX. ultimate optimization of seckill performance)
随机推荐
宽度精度
深度学习 神经网络案例(手写数字识别)
数据湖治理:优势、挑战和入门
Memory management summary
What are the concepts of union, intersection, difference and complement?
How did the beyond concert 31 years ago get super clean and repaired?
CentOS 6.3 下 PHP编译安装JSON模块报错解决
Unity脚本生命周期 Day02
AI做题水平已超过CS博士?
Quick introduction to automatic control principle + understanding
. Net applications consider x64 generation
MySQL组合索引(多列索引)使用与优化案例详解
C1 certification learning notes 3 -- Web Foundation
They are all talking about Devops. Do you really understand it?
对话龙智高级咨询顾问、Atlassian认证专家叶燕秀:Atlassian产品进入后Server时代,中国用户应当何去何从?
UFO: Microsoft scholars have proposed a unified transformer for visual language representation learning to achieve SOTA performance on multiple multimodal tasks
【读书会第十三期】FFmpeg 查看媒体信息和处理音视频文件的常用方法
大神详解开源 BUFF 增益攻略丨直播
numpy笔记
Redis publish and subscribe