jdk8stream map取对象中某项的问题
2019-01-15 07:04:17来源:博客园 阅读 ()
jdk8 Stream map 取对象中某项的值
map 取对象中某项的值 问题
...
List<ScreenWiperResponse> screenWiperList= screenWiperResponseList.stream().map(CarAdapterForScreenWiperResponse::getPartData).collect(Collectors.toList());
List<String> productModelList = new LinkedList<>();
log.info("screenWiperList: {}", screenWiperList);
screenWiperList.forEach(screenWiperResponse -> {
if (CollectionUtil.isNotNullOrEmpty(screenWiperResponse.getPartNos())){
productModelList.addAll(screenWiperResponse.getPartNos());
}
});
...
分析:拿到值就做处理,出现空指针,出现的Bug是,根据某项值进行取值后,会出现null对象
size等于2是,原数据,通过取某项值后,返回对应位置的数据,第一个对象不符合,为null,第二个对象符合取值条件,就显示有数据。
经过上面分析,问题已经找到,需要把null过滤,代码调整
...
List<ScreenWiperResponse> screenWiperList= screenWiperResponseList.stream().map(CarAdapterForScreenWiperResponse::getPartData).filter(x -> x != null).collect(Collectors.toList());
List<String> productModelList = new LinkedList<>();
log.info("screenWiperList: {}", screenWiperList);
screenWiperList.forEach(screenWiperResponse -> {
if (CollectionUtil.isNotNullOrEmpty(screenWiperResponse.getPartNos())){
productModelList.addAll(screenWiperResponse.getPartNos());
}
});
...
惯性:一般用jdk8 stream的map根据某一项取值,取完之后,基本就结束了,如果你继续把这个集合进行循环处理,就会发现bug ,手动过滤下,此处也算是一坑
...
screenWiperResponseList.stream().map(CarAdapterForScreenWiperResponse::getPartData).filter(x -> x != null).collect(Collectors.toList());
...
原文链接:https://www.cnblogs.com/sunyk/p/10269041.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 通过与C++程序对比,彻底搞清楚JAVA的对象拷贝 2020-06-11
- Java笔记:集合 2020-06-10
- Java基础复习——类和对象 2020-06-09
- 深入解析ThreadLocal和ThreadLocalMap 2020-06-08
- 头条面试居然跟我扯了半小时的Semaphore 2020-06-08
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash