Java番石榴 |带有示例的 Booleans.toArray() 方法
Guava 库中Booleans 类的toArray()方法用于将作为参数传递给该方法的布尔值转换为布尔数组。这些布尔值作为集合传递给此方法。此方法返回一个布尔数组。
句法:
public static boolean[] toArray(Collection
参数:此方法接受一个强制参数集合,该集合是要转换为布尔数组的布尔值的集合。
返回值:此方法以相同的顺序返回一个布尔数组,其中包含与集合相同的值。
异常:如果传递的集合或其任何元素为空,则此方法抛出NullPointerException 。
下面的程序说明了 toArray() 方法的使用:
示例 1:
// Java code to show implementation of
// Guava's Booleans.toArray() method
import com.google.common.primitives.Booleans;
import java.util.Arrays;
import java.util.List;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Creating a List of Boolean
List myList
= Arrays.asList(false, true,
false, false);
// Using Booleans.toArray() method to convert
// a List or Set of Boolean to an array
// of Boolean
boolean[] arr = Booleans.toArray(myList);
// Displaying an array containing each
// value of collection,
// converted to a boolean value
System.out.println(Arrays.toString(arr));
}
}
输出:
[false, true, false, false]
示例 2:
// Java code to show implementation of
// Guava's Booleans.toArray() method
import com.google.common.primitives.Booleans;
import java.util.Arrays;
import java.util.List;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Creating a List of Boolean
List myList
= Arrays.asList(true, true, false);
// Using Booleans.toArray() method to convert
// a List or Set of Boolean to an array
// of Boolean
boolean[] arr = Booleans.toArray(myList);
// Displaying an array containing each
// value of collection,
// converted to a boolean value
System.out.println(Arrays.toString(arr));
}
}
输出:
[true, true, false]
参考: https://google.github.io/guava/releases/20.0/api/docs/com/google/common/primitives/Booleans.html#toArray-java.util.Collection-