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的区别
基础教程推荐
- RabbitMQ:消息保持“未确认"; 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- 存储 20 位数字的数据类型 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
