當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.util.function.BiPredicate用法及代碼示例


雙謂詞<T, V>接口被引入JDK 8。該接口封裝在java.util.function包。它對兩個對象進行操作並根據該條件返回一個謂詞值。它是一個函數接口因此可以用於拉姆達表達式還。

public interface BiPredicate<T, V>

方法:

  1. test():此函數對兩個對象進行條件檢查,並返回一個表示結果的布爾值。
    boolean test(T obj, V obj1)
  2. and():該函數對當前對象和作為參數接收的對象進行 AND 運算,並返回新形成的謂詞。該方法有一個默認實現。
    default BiPredicate<T, V> and(BiPredicate<? super T, ? super V> other)
  3. negate():該函數返回當前謂詞的逆,即反轉測試條件。該方法有一個默認實現。
    default BiPredicate<T, V> negate() 
  4. or():該函數對當前對象和作為參數接收的對象進行 OR 運算,並返回新形成的謂詞。該方法有一個默認實現。
    default BiPredicate<T, V> or(BiPredicate<? super T, ? super V> other)
  5. 例子:

    Java

    
    // Java example to demonstrate BiPredicate interface 
      
    import java.util.function.BiPredicate; 
      
    public class BiPredicateDemo { 
        public static void main(String[] args) 
        { 
            // Simple predicate for checking equality 
            BiPredicate<Integer, String> biPredicate = (n, s) -> 
            { 
                if (n == Integer.parseInt(s)) 
                    return true; 
                return false; 
            }; 
      
            System.out.println(biPredicate.test(2, "2")); 
      
            // Predicate for checking greater than 
            BiPredicate<Integer, String> biPredicate1 = (n, s) -> 
            { 
                if (n > Integer.parseInt(s)) 
                    return true; 
                return false; 
            }; 
      
            // ANDing the two predicates 
            BiPredicate<Integer, String> biPredicate2 
                = biPredicate.and(biPredicate1); 
            System.out.println(biPredicate2.test(2, "3")); 
      
            // ORing the two predicates 
            biPredicate2 = biPredicate.or(biPredicate1); 
            System.out.println(biPredicate2.test(3, "2")); 
      
            // Negating the predicate 
            biPredicate2 = biPredicate.negate(); 
            System.out.println(biPredicate2.test(3, "2")); 
        } 
    } 
    輸出:
    true
    false
    true
    true

    參考: https://docs.oracle.com/javase/8/docs/api/java/util/function/BiPredicate.html



相關用法


注:本文由純淨天空篩選整理自CharchitKapoor大神的英文原創作品 Java.util.function.BiPredicate interface in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。