📜  Java中的 IntStream anyMatch() 示例

📅  最后修改于: 2022-05-13 01:55:32.278000             🧑  作者: Mango

Java中的 IntStream anyMatch() 示例

IntStream anyMatch(IntPredicate predicate)返回此流的任何元素是否与提供的谓词匹配。如果不需要确定结果,它可能不会评估所有元素的谓词。这是一个短路端子操作。如果一个终端操作在有无限输入时可能会在有限时间内终止,那么它就是短路的。
句法 :

boolean anyMatch(IntPredicate predicate)

Where, IntPredicate represents a predicate (boolean-valued function) 
of one int-valued argument and the function returns true if any 
elements of the stream match the provided predicate, 
otherwise false.

注意:如果流为空,则返回 false 并且不评估谓词。

示例 1: anyMatch()函数检查列表中的任何元素是否满足给定条件。

// Java code for IntStream anyMatch
// (Predicate predicate) to check whether
// any element of this stream match
// the provided predicate.
import java.util.*;
import java.util.stream.IntStream;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
  
        // Creating an IntStream
        IntStream stream = IntStream.of(1, 2, 3, 4, 5, 6);
  
        // Stream anyMatch(Predicate predicate)
        boolean answer = stream.anyMatch(num -> (num - 5) > 0);
  
        // Displaying the result
        System.out.println(answer);
    }
}

输出 :

true

示例 2: anyMatch()函数检查流中任何元素的平方根是否大于 8。

// Java code for IntStream anyMatch
// (Predicate predicate) to check whether
// any element of this stream match
// the provided predicate.
import java.util.*;
import java.util.stream.IntStream;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
  
        // Creating an IntStream
        IntStream stream = IntStream.of(10, 20, 30, 40, 50);
  
        // Stream anyMatch(Predicate predicate)
        boolean answer = stream.anyMatch(num -> Math.sqrt(num) > 8);
  
        // Displaying the result
        System.out.println(answer);
    }
}

输出 :

false

示例 3: anyMatch()函数显示如果流为空,则返回 false。

// Java code for IntStream anyMatch
// (Predicate predicate) to check whether
// any element of this stream match
// the provided predicate.
import java.util.*;
import java.util.stream.IntStream;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
  
        // Creating an empty IntStream
        IntStream stream = IntStream.empty();
  
        boolean answer = stream.anyMatch(num -> true);
  
        // Displaying the result
        System.out.println(answer);
    }
}

输出 :

false