List.stream()常用方法

更新时间:2023-07-08 15:55:15 阅读: 评论:0

List.stream()常⽤⽅法
1 将List转成map幼儿午睡的重要性
list.stream().Map(xxx)): list.stream():把list转成流,list.stream().collect():把流转回list.
⽰例:
大米饭的做法
List<JSONObject> candidates = CandidateList();
//candidates 是从数据库⾥查出来结果集,包含,eventId,suppNm,rank三个字段,现在把eventId当key,suppNm,rank转成jsonobject当value. Map<String, List<JSONObject>> candidatesMap = candidates.stream().Map(w -> w.getString("eventId"), w -> {                            ArrayList<JSONObject> candidateList = new ArrayList<>();
JSONObject jsonObject = new JSONObject();
波斯人jsonObject.put("suppNm",w.get("suppNm"));
jsonObject.put("rank",w.get("rank"));
candidateList.add(jsonObject);
return candidateList;
初一寒假作业
},追梦女孩
//指定key重复的处理⽅式
(List<JSONObject> oldValue,List<JSONObject> newValue)->{ oldValue.addAll(newValue); return oldValue; }));
2 对list<T>中的泛型数据做处理
最大单体建筑List<JSONObject> list = archMapper.categorySelect();乡村英文
//list是查询的结果集,包含firstCode,firstName字段
List<JSONObject> parent_id = list.stream().map(e -> {
将list⾥的JSONObject类型取出来做处理,仍旧映射成JSONObject类型,也可以取出⼀个字段映射成string类型
JSONObject jsonObject = new JSONObject();
jsonObject.put("code",e.get("firstCode"));
jsonObject.put("name",e.get("firstName"));
return jsonObject;
暖心歌曲
}).distinct().List());
distinct()是去重,还有filter()过滤,limit()限制条数,sort()排序,forEach()循环处理list每条数据等⽅法.
还可以组合使⽤
list.stream().filter(x1 ->x1过滤条件).map(e -> {})这样符合filter过滤条件的数据才会映射

本文发布于:2023-07-08 15:55:15,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/89/1073158.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:处理   结果   数据   过滤   映射   类型
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图