摘要: 1.Collectors.toList():转换成List集合。/ Collectors.toSet():转换成set集合。 2.Collectors.toCollection(TreeSet::new):转换成特定的set集合。 3.Collectors.toMap(keyMapper, valu 阅读全文
posted @ 2019-07-05 16:44 草莓罐头 阅读(25577) 评论(0) 推荐(0) 编辑
摘要: 什么是 Stream? Stream(流)是一个来自数据源的元素队列并支持聚合操作 生成流 在 Java 8 中, 集合接口有两个方法来生成流: stream() − 为集合创建串行流。 parallelStream() − 为集合创建并行流。 stream() − 为集合创建串行流。 parall 阅读全文
posted @ 2019-07-05 09:06 草莓罐头 阅读(648) 评论(0) 推荐(0) 编辑