Difference between anyMatch and findAny in java 8(java 8中anyMatch和findAny的区别)
问题描述
我有一个 Array
并想对其元素执行一些匹配.
I have an Array
and want to perform some matching on it's element.
我知道在 java 8
中可以通过两种方式完成:
I came to know that it could be done in two ways in java 8
:
String[] alphabet = new String[]{"A", "B", "C"};
任意匹配:
Arrays.stream(alphabet).anyMatch("A"::equalsIgnoreCase);
findAny:
Arrays.stream(alphabet).filter("a"::equalsIgnoreCase)
.findAny().orElse("No match found"));
据我所知,两者都在做同样的工作.但是,我找不到更喜欢哪一个?
As I can understand both are doing the same work. However, I could not found which one to prefer?
有人能说清楚他们俩有什么区别吗.
Could someone please make it clear what is the difference between both of them.
推荐答案
它们在内部做同样的工作,但它们的返回值不同.Stream#anyMatch()
返回 boolean
而 Stream#findAny()
返回一个匹配谓词的对象.
They do the same job internally, but their return value is different. Stream#anyMatch()
returns a boolean
while Stream#findAny()
returns an object which matches the predicate.
这篇关于java 8中anyMatch和findAny的区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:java 8中anyMatch和findAny的区别
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01