目录

Booleans

布尔值是原始类型布尔值的实用程序类。

Class 声明 (Class Declaration)

以下是com.google.common.primitives.Booleans类的声明 -

@GwtCompatible(emulated = true)
   public final class Booleans
      extends Object

方法 (Methods)

Sr.No 方法和描述
1

static List《Boolean》 asList(boolean... backingArray)

返回由指定数组支持的固定大小列表,类似于Arrays.asList(Object [])。

2

static int compare(boolean a, boolean b)

以标准方式比较两个指定的布尔值(false被认为小于true)。

3

static boolean[] concat(boolean[]... arrays)

返回每个提供的数组组合成单个数组的值。

4

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

如果target作为数组中的任何元素存在,则返回true。

5

static int countTrue(boolean... values)

返回true的值的数量。

6

static boolean[] ensureCapacity(boolean[] array, int minLength, int padding)

返回一个包含与array相同值的数组,但保证指定的最小长度。

7

static int hashCode(boolean value)

返回值的哈希码; 等于调用((Boolean)值).hashCode()的结果。

8

static int indexOf(boolean[] array, boolean target)

返回数组中值target的第一次出现的索引。

9

static int indexOf(boolean[] array, boolean[] target)

返回数组中指定目标第一次出现的起始位置,如果不存在,则返回-1。

10

static String join(String separator, boolean... array)

返回一个字符串,其中包含由separator分隔的提供的布尔值。

11

static int lastIndexOf(boolean[] array, boolean target)

返回数组中值target的最后一次出现的索引。

12

static Comparator《boolean[]》 lexicographicalComparator()

返回一个比较器,按字典顺序比较两个布尔数组。

13

static boolean[] toArray(Collection《Boolean》 collection)

将布尔实例的集合复制到新的基本布尔值数组中。

方法继承 (Methods Inherited)

该类继承以下类中的方法 -

  • java.lang.Object

布尔类的例子

使用您选择的任何编辑器在C:/》 Guava创建以下java程序

GuavaTester.java

import java.util.List;
import com.google.common.primitives.Booleans;
public class GuavaTester {
   public static void main(String args[]) {
      GuavaTester tester = new GuavaTester();
      tester.testBooleans();
   }
   private void testBooleans() {
      boolean[] booleanArray = {true,true,false,true,true,false,false};
      //convert array of primitives to array of objects
      List<Boolean> objectArray = Booleans.asList(booleanArray);
      System.out.println(objectArray.toString());
      //convert array of objects to array of primitives
      booleanArray = Booleans.toArray(objectArray);
      System.out.print("[ ");
      for(int i = 0; i< booleanArray.length ; i++) {
         System.out.print(booleanArray[i] + " ");
      }
      System.out.println("]");
      //check if element is present in the list of primitives or not
      System.out.println("true is in list? " + Booleans.contains(booleanArray, true));
      //return the first index of element
      System.out.println("true position in list " + Booleans.indexOf(booleanArray, true));
      //Returns the count of true values
      System.out.println("true occured: " + Booleans.countTrue());
      //Returns the comparisons
      System.out.println("false Vs true: " + Booleans.compare(false, true));
      System.out.println("false Vs false: " + Booleans.compare(false, false));
      System.out.println("true Vs false: " + Booleans.compare(true, false));
      System.out.println("true Vs true: " + Booleans.compare(true, true));
   }
}

验证结果

使用javac编译器编译类如下 -

C:\Guava>javac GuavaTester.java

现在运行GuavaTester来查看结果。

C:\Guava>java GuavaTester

看到结果。

[true, true, false, true, true, false, false]
[ true true false true true false false ]
true is in list? true
true position in list 0
true occured: 0
false Vs true: -1
false Vs false: 0
true Vs false: 1
true Vs true: 0
↑回到顶部↑
WIKI教程 @2018