📌  相关文章
📜  Java番石榴 |带有示例的 Booleans.asList() 方法

📅  最后修改于: 2022-05-13 01:55:12.603000             🧑  作者: Mango

Java番石榴 |带有示例的 Booleans.asList() 方法

Guava 的 Booleans 类的Booleans.asList()方法接受一个布尔数组作为参数并返回一个具有固定大小的列表。返回的列表由作为参数传递的布尔数组支持。这意味着在作为参数传递的数组中所做的更改将反映在方法返回的列表中,反之亦然。

句法:

参数:该方法接受一个强制参数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 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 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…-