这边使用的的是JAVA8中Stream(流)的处理方式
JavaBean
1.原List
List<SimpleBean> simpleBeanList = simpleServiceImpl.selectRowsByAll();
2.取出id组成新的List
List<Long> ids = simpleBeanList.stream().map(e -> e.getId()).collect(Collectors.toList());
这边使用的的是JAVA8中Stream(流)的处理方式
JavaBean
1.原List
List<SimpleBean> simpleBeanList = simpleServiceImpl.selectRowsByAll();
2.取出id组成新的List
List<Long> ids = simpleBeanList.stream().map(e -> e.getId()).collect(Collectors.toList());
本文标题:JAVA从List中取出某个字段组成新的List
本文链接:https://www.haomeiwen.com/subject/gamluhtx.html
网友评论