T
-
T
的第一个参数的类型
U
-
U
的第二个参数的类型
@FunctionalInterface public interface BiPredicate<T,U>
Predicate
Modifier and Type | Method and Description |
---|---|
default BiPredicate<T,U> |
and(BiPredicate<? super T,? super U> other)
返回一个组合的谓词,表示该谓词与另一个谓词的短路逻辑AND。
|
default BiPredicate<T,U> |
negate()
返回表示此谓词的逻辑否定的谓词。
|
default BiPredicate<T,U> |
or(BiPredicate<? super T,? super U> other)
返回一个组合的谓词,表示该谓词与另一个谓词的短路逻辑或。
|
boolean |
test(T t, U u)
根据给定的参数来评估这个谓词。
|
default BiPredicate<T,U> and(BiPredicate<? super T,? super U> other)
false
,则不other
other谓词。
在评估任一谓词期间抛出的任何异常被中继到调用者; 如果此断言的评价抛出一个异常, other
断言不会被评估。
other
- 将与此谓词进行逻辑与操作的谓词
other
谓词
NullPointerException
- 如果其他为空
default BiPredicate<T,U> negate()
default BiPredicate<T,U> or(BiPredicate<? super T,? super U> other)
true
,那么other
谓语不评估。
在评估任一谓词期间抛出的任何异常被中继到调用者; 如果此断言的评价抛出一个异常, other
断言不会被评估。
other
- 将与该谓词进行逻辑关系的谓词
other
谓词
NullPointerException
- 如果其他为空
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.