当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Guava Booleans.contains()用法及代码示例


Guava库中Booleans类的contains()方法用于检查指定的布尔值数组中是否存在指定的值。要搜索的布尔值和要在其中搜索的布尔数组都被当作参数。

用法:

public static boolean contains(boolean[] array,
                               boolean target)

参数:此方法接受两个强制性参数:


  • array:这是布尔值的数组,将在其中搜索目标值。
  • target:这是要搜索数组中是否存在的布尔值。

返回值:此方法返回一个布尔值,该布尔值说明在指定的布尔数组中是否存在目标布尔值。如果目标值存在于数组中,则返回True。否则返回false。

以下示例程序旨在说明contains()方法的使用:

示例1:

// Java code to show implementation of 
// Guava's Booleans.contains() method 
  
import com.google.common.primitives.Booleans; 
import java.util.Arrays; 
  
class GFG { 
  
    // Driver's code 
    public static void main(String[] args) 
    { 
  
        // Creating a Boolean array 
        boolean[] arr = { false, true, false, 
                          true, true }; 
  
        boolean target = true; 
  
        // Using Booleans.contains() method to search 
        // for an element in the array. The method 
        // returns true if element is found, else 
        // returns false 
        if (Booleans.contains(arr, target)) 
            System.out.println("Target is present "
                               + "in the array"); 
        else
            System.out.println("Target is not "
                               + "present in the array"); 
    } 
}
输出:
Target is present in the array

示例-2:

// Java code to show implementation of 
// Guava's Booleans.contains() method 
  
import com.google.common.primitives.Booleans; 
import java.util.Arrays; 
  
class GFG { 
  
    // Driver's code 
    public static void main(String[] args) 
    { 
  
        // Creating a Boolean array 
        boolean[] arr = { true, true, true, 
                          true, true }; 
  
        boolean target = false; 
  
        // Using Booleans.contains() method to search 
        // for an element in the array. The method 
        // returns true if element is found, else 
        // returns false 
        if (Booleans.contains(arr, target)) 
            System.out.println("Target is present "
                               + "in the array"); 
        else
            System.out.println("Target is not present "
                               + "in the array"); 
    } 
}
输出:
Target is not present in the array

参考: https://google.github.io/guava/releases/20.0/api/docs/com/google/common/primitives/Booleans.html#contains-boolean:A-boolean-



相关用法


注:本文由纯净天空筛选整理自Sahil_Bansall大神的英文原创作品 Java Guava | Booleans.contains() method with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。