Java 8 Applying stream filter based on a condition(Java 8 根据条件应用流过滤器)
问题描述
在 Java 8 中,有没有办法根据条件在流上应用过滤器,
In Java 8, is there a way to apply the filter on a stream based on a condition,
例子
我有这个直播
if (isAccessDisplayEnabled) {
src = (List < Source > ) sourceMeta.getAllSources.parallelStream()
.filter(k - > isAccessDisplayEnabled((Source) k))
.filter(k - > containsAll((Source) k, substrings, searchString))
.collect(Collectors.toList());
} else {
src = (List < Source > ) sourceMeta.getAllSources.parallelStream()
.filter(k - > containsAll((Source) k, substrings, searchString))
.collect(Collectors.toList());
}
我正在添加过滤器
.filter(k - > isAccessDisplayEnabled((Source) k)))
基于 if-else 条件的流.有没有办法避免 if-else,因为如果有更多的过滤器出现,那么它将很难维护.
on the stream based on the if-else condition. Is there a way to avoid that if-else, since if there are more filters coming up,then it will be hard to maintain.
请告诉我
推荐答案
一种方法是
Stream<Source> stream = sourceMeta.getAllSources.parallelStream().map(x -> (Source)x);
if(isAccessDisplayEnabled) stream = stream.filter(s -> isAccessDisplayEnabled(s));
src = stream.filter(s - > containsAll(s, substrings, searchString))
.collect(Collectors.toList());
另一个
src = sourceMeta.getAllSources.parallelStream().map(x -> (Source)x)
.filter(isAccessDisplayEnabled? s - > isAccessDisplayEnabled(s): s -> true)
.filter(s - > containsAll(s, substrings, searchString))
.collect(Collectors.toList());
在任何一种情况下,请注意在开头执行一种类型转换如何简化整个流管道.
In either case, note how performing one type cast at the beginning simplifies the entire stream pipline.
这两种解决方案都避免为每个流元素重新评估 isAccessDisplayEnabled
,但是,第二种方法依赖于 JVM 内联 s -> 的能力.当此代码对性能至关重要时,为 true
.
Both solutions avoid re-evaluating isAccessDisplayEnabled
for every stream element, however, the second relies on the JVM’s capability of inlining s -> true
when this code turns out to be performance critical.
这篇关于Java 8 根据条件应用流过滤器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java 8 根据条件应用流过滤器
基础教程推荐
- 如何强制对超级方法进行多态调用? 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01