分类:
Java
原文链接:https://blog.csdn.net/qq_37253891/article/details/108488919
java8 stream().map().collect()的
Collectors.toList()、
案例1
- List<Long> idList = users.stream().map(User::getId).collect(Collectors.toList());
其中有个User::getId,这个其实就是调用User类的getId()方法。
案例2
- List<String> list = Arrays.asList("a", "b", "c", "d");
-
- List<String> results = list.stream().map(String::toUpperCase).collect(Collectors.toList());
-
- System.out.println(results); //{A, B, C, D}
Collectors.toMap()、
- List<User> userList = new ArrayList<>();
- userList.add(new User(1, "张三", 18));
- userList.add(new User(2, "李四", 19));
- userList.add(new User(3, "王五", 18));
- //将userList转化为key为id,value为User对象的map
- Map<Long, User> map = userList.stream().collect(Collectors.toMap(User::getId, p -> p));
Map<Long, User> map = userList.stream().collect(Collectors.toMap(User::getId, p -> p));这一步就是将userList 转换为key为id,value为User对象的map。
User::getId ===》 User对象的getId方法
p -> p ===》就是进来的是什么,最终就是什么,这里就是进来的是User对象,出去的也就是User对象
?
?还可以换一下:
- Map<Long, String> map = userList.stream().collect(Collectors.toMap(User::getId, User::getName));
2. 三个参数的用法
- Map<Integer, String> map = userList.stream().collect(Collectors.toMap(User::getAge, User::getName, (a, b) -> b));
??(a, b) -> b的意思就是,如果存在重复的,永远取后面一个
??这时,map里的值就是:
- {
- 18: "王五"
- 19: "李四"
- }
Collectors.groupingBy()的用法
还是沿用上面那个例子。当你想获取key是age的map,又不想覆盖掉重复项数据,这个时候就可以用 Collectors.groupingBy 了。
- Map<Integer, List<User>> map = userList.stream().collect(Collectors.groupingBy(User::getAge));
??可以看到,这次的返回值变成了 Map<Integer, List> 了,也就是说,变成了key是age,value是User对象的集合了。这时,map里的值就变成了:
- {
- 18: [User(1, "张三", 18), User(3, "王五", 18)]
- 19: [User(2, "李四", 19)]
- }
评价
排名
4
文章
473
粉丝
3
评论
2
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术