javamatch_JavaStreamanyMatch()用法及代码示例

更新时间:2023-05-16 18:50:41 阅读: 评论:0

javamatch_JavaStreamanyMatch()⽤法及代码⽰例
流anyMatch(谓词谓词)返回此流的任何元素是否与提供的谓词匹配。如果不⼀定要确定结果,则可能不会评估所有元素上的谓词。这是短路端⼦操作。如果出现⽆限输⼊时,端⼦操作可能会在有限时间内终⽌,则该端⼦操作会发⽣短路。
⽤法:
boolean anyMatch(Predicate super T> predicate)
Where, T is the type of the input to the predicate
and the function returns true if any elements of
the stream match the provided predicate,
otherwi fal.
注意:如果流为空,则返回fal,并且不对该谓词求值。
下⾯给出⼀些⽰例,以更好地理解该功能的实现。
股东决议书范本
⽰例1:anyMatch()函数,⽤于检查列表中的任何元素是否满⾜给定条件。
// Java code for Stream anyMatch
// (Predicate predicate) to check whether
// any element of this stream match
// the provided predicate.
import java.util.*;
class GFG {
// Driver code
public static void main(String[] args) {
// Creating a list of Integers
腌制羊肉串的方法List list = Arrays.asList(3, 4, 6, 12, 20);
孔最/
/ Stream anyMatch(Predicate predicate)
曾经的我们boolean answer = list.stream().anyMatch(n
-> (n * (n + 1)) / 4 == 5);
// Displaying the result
System.out.println(answer);
纸上谈兵的反义词
}
}
输出:
true
⽰例2:anyMatch()函数⽤于检查列表中的任何元素在第⼀个索引处是否都具有UpperCa。
// Java code for  Stream anyMatch
朋友生日祝福语/
/ (Predicate predicate) to check whether
// any element of this stream match
// the provided predicate.
补阳气的食物import java.util.stream.Stream;bb照片
class GFG {
// Driver code
public static void main(String[] args)
{
// Creating a Stream of Strings
Stream stream = Stream.of("Geeks", "fOr",
"GEEKSQUIZ", "GeeksforGeeks");
/
/ Check if Character at 1st index is
// UpperCa in any string or not using
// Stream anyMatch(Predicate predicate)
boolean answer = stream.anyMatch(str -> Character.isUpperCa(str.charAt(1))); // Displaying the result
System.out.println(answer);
}
}
输出:
true

本文发布于:2023-05-16 18:50:41,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/657549.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:谓词   元素   可能   是否   操作   列表   不会
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图