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


Java Guava Booleans.toArray()用法及代碼示例


Guava庫中布爾類的toArray()方法用於將作為參數傳遞給此方法的布爾值轉換為布爾數組。這些布爾值作為Collection傳遞給此方法。此方法返回一個布爾數組。

用法:

public static boolean[] toArray(Collection<Boolean> collection)



參數:此方法接受強製性參數集合,該參數集合是要轉換為布爾數組的布爾值的集合。

返回值:此方法以相同的順序返回包含與集合相同的值的布爾數組。

異常:如果傳遞的集合或其任何元素為null,則此方法將引發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<Boolean> 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<Boolean> 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-



相關用法


注:本文由純淨天空篩選整理自Sahil_Bansall大神的英文原創作品 Java Guava | Booleans.toArray() method with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。