java 8 中 anyMatch 和 findAny 的区别 [英] Difference between anyMatch and findAny in java 8

查看:42
本文介绍了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"};

anyMatch :

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() 返回一个 booleanStream#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 的区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆