IntStream noneMatch(IntPredicate谓词)返回此流中是否没有元素与提供的谓词匹配。如果不一定要确定结果,则可能不会评估所有元素上的谓词。这是短路端子操作。如果出现无限输入时,端子操作可能会在有限时间内终止,则该端子操作会发生短路。
用法:
boolean noneMatch(IntPredicate predicate) Where, IntPredicate represents a predicate (boolean-valued function) of one int-valued argument and the function returns true if either all elements of the stream match the provided predicate or the stream is empty, otherwise false.
注意:如果流为空,则返回true,并且不评估谓词。
示例1:noneMatch()函数,用于检查IntStream的元素是否可被5整除。
// Java code for IntStream noneMatch
// (Predicate predicate) to check whether
// no 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(3, 5, 9, 12, 14);
// Check if no element of stream
// is divisible by 5 using
// IntStream noneMatch(Predicate predicate)
boolean answer = stream.noneMatch(num -> num % 5 == 0);
// Displaying the result
System.out.println(answer);
}
}
输出:
false
示例2:noneMatch()函数,用于检查两个IntStream串联后获得的IntStream中的元素是否不小于2。
// Java code for IntStream noneMatch
// (Predicate predicate) to check whether
// no 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 after concatenating
// two IntStreams
IntStream stream = IntStream.concat(IntStream.of(3, 4, 5, 6),
IntStream.of(7, 8, 9, 10));
// Check if no element of stream
// is less than 2 using
// IntStream noneMatch(Predicate predicate)
boolean answer = stream.noneMatch(num -> num < 2);
// Displaying the result
System.out.println(answer);
}
}
输出:
true
示例3:noneMatch()函数,以显示流是否为空,然后返回true。
// Java code for IntStream noneMatch
// (Predicate predicate) to check whether
// no 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();
// Using IntStream noneMatch() on empty stream
boolean answer = stream.noneMatch(num -> true);
// Displaying the result
System.out.println(answer);
}
}
输出:
true
相关用法
- Java DoubleStream noneMatch()用法及代码示例
- Java LongStream noneMatch()用法及代码示例
- Java Stream noneMatch()用法及代码示例
- Java IntStream max()用法及代码示例
- Java IntStream min()用法及代码示例
- Java IntStream average()用法及代码示例
- Java IntStream count()用法及代码示例
- Java IntStream toArray()用法及代码示例
- Java IntStream empty()用法及代码示例
- Java IntStream filter()用法及代码示例
- Java IntStream distinct()用法及代码示例
- Java IntStream anyMatch()用法及代码示例
- Java IntStream allMatch()用法及代码示例
- Java IntStream peek()用法及代码示例
- Java IntStream codePoints()用法及代码示例
注:本文由纯净天空筛选整理自Sahil_Bansall大神的英文原创作品 IntStream noneMatch() in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。