java8 stream使用
程序员文章站
2022-05-28 13:35:12
...
Optional.ofNullable(classicList).ifPresent(new Consumer<List<TemplateClassicVo>>() {
@Override
public void accept(List<TemplateClassicVo> templateClassicVos) {
templateClassicVos.parallelStream().flatMap((templateClassicVo) -> {
if (Objects.isNull(templateClassicVo)) {
return null;
}
classicForUnitDomain.setSecondTypeId(templateClassicVo.getId());
classicForUnitDomain.setSecondTypeName(templateClassicVo.getName());
Optional.ofNullable(templates).ifPresent(new Consumer<List<Template>>() {
@Override
public void accept(List<Template> templates) {
templates.parallelStream().flatMap((template) -> {
return null;
}).count();
}
});
return null;
}).count();
}
});
上一篇: 用大数据推动深圳国际化
推荐阅读