Cannot make filter-gt;forEach-gt;collect in one stream?(无法在一个流中制作过滤器-forEach-collect?)
问题描述
我想实现这样的目标:
items.stream()
.filter(s-> s.contains("B"))
.forEach(s-> s.setState("ok"))
.collect(Collectors.toList());
过滤,然后更改过滤结果的属性,然后将结果收集到列表中.但是,调试器说:
filter, then change a property from the filtered result, then collect the result to a list. However, the debugger says:
无法在原始类型 void
上调用 collect(Collectors.toList())
.
Cannot invoke
collect(Collectors.toList())
on the primitive typevoid
.
我需要 2 个流吗?
推荐答案
forEach
被设计为终端操作,是的 - 之后你不能做任何事情你叫它.
The forEach
is designed to be a terminal operation and yes - you can't do anything after you call it.
惯用的方法是先应用转换,然后 collect()
将所有内容应用于所需的数据结构.
The idiomatic way would be to apply a transformation first and then collect()
everything to the desired data structure.
可以使用专为非变异操作设计的 map
执行转换.
The transformation can be performed using map
which is designed for non-mutating operations.
如果您正在执行非变异操作:
items.stream()
.filter(s -> s.contains("B"))
.map(s -> s.withState("ok"))
.collect(Collectors.toList());
其中 withState
是一种返回原始对象副本的方法,包括提供的更改.
where withState
is a method that returns a copy of the original object including the provided change.
如果您正在执行副作用:
items.stream()
.filter(s -> s.contains("B"))
.collect(Collectors.toList());
items.forEach(s -> s.setState("ok"))
这篇关于无法在一个流中制作过滤器->forEach->collect?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法在一个流中制作过滤器->forEach->collect?
基础教程推荐
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 降序排序:Java Map 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01