How to use if-else logic in Java 8 stream forEach(如何在 Java 8 流 forEach 中使用 if-else 逻辑)
问题描述
下面的 2 个流调用中显示了我想要做的事情.我想根据某些条件将一个集合拆分为 2 个新集合.理想情况下,我想在 1 中执行此操作.我已经看到了用于流的 .map 函数的条件,但找不到 forEach 的任何内容.实现我想要的最佳方式是什么?
What I want to do is shown below in 2 stream calls. I want to split a collection into 2 new collections based on some condition. Ideally I want to do it in 1. I've seen conditions used for the .map function of streams, but couldn't find anything for the forEach. What is the best way to achieve what I want?
animalMap.entrySet().stream()
.filter(pair-> pair.getValue() != null)
.forEach(pair-> myMap.put(pair.getKey(), pair.getValue()));
animalMap.entrySet().stream()
.filter(pair-> pair.getValue() == null)
.forEach(pair-> myList.add(pair.getKey()));
推荐答案
只需将条件放入 lambda 本身,例如
Just put the condition into the lambda itself, e.g.
animalMap.entrySet().stream()
.forEach(
pair -> {
if (pair.getValue() != null) {
myMap.put(pair.getKey(), pair.getValue());
} else {
myList.add(pair.getKey());
}
}
);
当然,这假定两个集合(myMap
和 myList
)都在上述代码之前声明和初始化.
Of course, this assumes that both collections (myMap
and myList
) are declared and initialized prior to the above piece of code.
更新:使用 Map.forEach
使代码更短,更高效和可读,如 Jorn Vernee 好心建议:
Update: using Map.forEach
makes the code shorter, plus more efficient and readable, as Jorn Vernee kindly suggested:
animalMap.forEach(
(key, value) -> {
if (value != null) {
myMap.put(key, value);
} else {
myList.add(key);
}
}
);
这篇关于如何在 Java 8 流 forEach 中使用 if-else 逻辑的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Java 8 流 forEach 中使用 if-else 逻辑
基础教程推荐
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01