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


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


Guava布爾類的Booleans.asList()方法接受布爾數組作為參數,並返回具有固定大小的列表。返回的列表由作為參數傳遞的布爾數組支持。這意味著在數組中作為參數傳遞的更改將反映在方法返回的列表中,反之亦然。

用法:

public static List<Boolean> asList(boolean… backingArray)



參數:該方法接受強製性參數backingArray,該參數是用於備份列表的布爾數組。

返回值:方法Booleans.asList()返回固定大小的列表,該列表由作為該方法的參數傳遞的數組支持。換句話說,該方法返回數組的列表視圖。

以下示例說明了上述方法的實現:

範例1:

// Java code to show implementation of 
// Guava's Booleans.asList() method 
  
import com.google.common.primitives.Booleans; 
import java.util.List; 
  
class GFG { 
  
    // Driver's code 
    public static void main(String[] args) 
    { 
  
        // Creating a Boolean array 
        boolean arr[] = { true, false, true, 
                          true, true }; 
  
        // Using Booleans.asList() method to wrap 
        // the specified primitive Boolean array 
        // as a List of the Boolean type 
        List<Boolean> myList = Booleans.asList(arr); 
  
        // Displaying the elements in List 
        System.out.println(myList); 
    } 
}
輸出:
[true, false, true, true, true]

範例2:

// Java code to show implementation of 
// Guava's Booleans.asList() method 
  
import com.google.common.primitives.Booleans; 
import java.util.List; 
  
class GFG { 
  
    // Driver's code 
    public static void main(String[] args) 
    { 
  
        // Creating a Boolean array 
        boolean arr[] = { false, true, false }; 
  
        // Using Booleans.asList() method to wrap 
        // the specified primitive Boolean array 
        // as a List of the Boolean type 
        List<Boolean> myList = Booleans.asList(arr); 
  
        // Displaying the elements in List 
        System.out.println(myList); 
    } 
}
輸出:
[false, true, false]

參考: https://google.github.io/guava/releases/20.0/api/docs/com/google/common/primitives/Booleans.html#asList-boolean…-



相關用法


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