java8 流式写法那些事
Posted 大树叶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java8 流式写法那些事相关的知识,希望对你有一定的参考价值。
Java8有好多新的写法,眼花缭乱,如下:
Stream写法
例子1:
Java以前的写法
List<Long> recordsIDlist = new ArrayList<>(retrecordsList.size());
retrecordsList.forEach(item -> {recordsIDlist.add(item.getRecordId());});
Java8 新写法
List<Long> recordsIDlist=
retrecordsList.stream().map(DiffStatementsSnapshot::getRecordId).collect(Collectors.toList());
或者为:
List<Long> recordsIDlist= retrecordsList.stream().map(item -> item.getRecordId()).collect(Collectors.toList());
ofNullable用法
return Optional.ofNullable(OFFSET_CACHE.get(coupleInfo.getCoupleId())).map(WeakReference::get).orElseGet(() -> {
OffsetCondition offsetCondition = JSON.parseObject(coupleInfo.getOffsetCondition(), OffsetCondition.class);
OFFSET_CACHE.put(coupleInfo.getCoupleId(), new WeakReference<>(offsetCondition));
return offsetCondition;
});
参考文档:
1. https://blog.csdn.net/qq_38360675/article/details/103089167
2.https://blog.csdn.net/zjhred/article/details/84976734
以上是关于java8 流式写法那些事的主要内容,如果未能解决你的问题,请参考以下文章