Java Guava Booleans类
1 什么是Guava Booleans类
Booleans 是原始类型 Boolean 的实用程序类。
2 Guava Booleans类的语法
@GwtCompatible(emulated = true)
public final class Booleans
extends Object
3 Guava Booleans类的方法
方法 | 描述 |
---|---|
static List<Boolean> asList(boolean... backingArray) | 返回由指定数组支持的固定大小列表,类似于 Arrays.asList(Object[])。 |
static int compare(boolean a, boolean b) | 以标准方式比较两个指定的布尔值(false被认为小于true)。 |
static boolean[] concat(boolean[]... arrays) | 返回每个提供的数组中组合成单个数组的值。 |
static boolean contains(boolean[] array, boolean target) | 如果目标作为数组中任何位置的元素存在,则返回 true。 |
static int countTrue(boolean... values) | 返回为true值的数量。 |
static boolean[] ensureCapacity(boolean[] array, int minLength, int padding) | 返回包含与数组相同的值的数组,但保证具有指定的最小长度。 |
static int hashCode(boolean value) | 返回值的哈希码;等于调用 ((Boolean) value).hashCode() 的结果。 |
static int indexOf(boolean[] array, boolean target) | 返回值目标在数组中第一次出现的索引。 |
static int indexOf(boolean[] array, boolean[] target) | 返回指定目标在数组中第一次出现的起始位置,如果没有这样的出现,则返回 -1。 |
static String join(String separator, boolean... array) | 返回一个字符串,其中包含由分隔符分隔的提供的布尔值。 |
static int lastIndexOf(boolean[] array, boolean target) | 返回值目标在数组中最后一次出现的索引。 |
static Comparator<boolean[]> lexicographicalComparator() | 返回按字典顺序比较两个布尔数组的比较器。 |
static boolean[] toArray(Collection<Boolean> collection) | 将一组布尔实例复制到一个新的原始布尔值数组中。 |
5 Guava Booleans类的例子
让我们看一个简单的Guava Booleans类示例。
package com.yiidian;
import com.google.common.primitives.Booleans;
import java.util.List;
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));
}
}
输出结果为:
热门文章
优秀文章