当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Guava Ints asList()用法及代码示例


Guava 的Ints.asList()返回指定数组支持的固定大小的列表。

用法:

public static List<Integer> 
    asList(int[] array)

参数:此方法将数组作为参数,这是支持列表的数组。


返回值:此方法返回由指定数组支持的固定大小的列表。

范例1:

// Java code to show implementation of 
// Guava's Ints.asList() method 
  
import com.google.common.primitives.Ints; 
import java.util.List; 
  
class GFG { 
  
    // Driver's code 
    public static void main(String[] args) 
    { 
  
        // Creating an integer array 
        int arr[] = { 1, 2, 3, 4, 5 }; 
  
        // Using Ints.asList() method to wrap 
        // the specified primitive Integer array 
        // as a List of the Integer type 
        List<Integer> myList = Ints.asList(arr); 
  
        // Displaying the elements in List 
        System.out.println("List of given array:"
                           + myList); 
    } 
}
输出:
List of given array:[1, 2, 3, 4, 5]

范例2:

// Java code to show implementation of 
// Guava's Ints.asList() method 
  
import com.google.common.primitives.Ints; 
import java.util.List; 
  
class GFG { 
  
    // Driver's code 
    public static void main(String[] args) 
    { 
        // Creating an integer array 
        int arr[] = { 3, 5, 7 }; 
  
        // Using Ints.asList() method to wrap 
        // the specified primitive Integer array 
        // as a List of the Integer type 
        List<Integer> myList = Ints.asList(arr); 
  
        // Displaying the elements in List 
        System.out.println("List of given array:"
                           + myList); 
    } 
}
输出:
List of given array:[3, 5, 7]

参考: https://google.github.io/guava/releases/22.0/api/docs/com/google/common/primitives/Ints.html#asList-int…-



相关用法


注:本文由纯净天空筛选整理自Sahil_Bansall大神的英文原创作品 Ints asList() function | Guava | Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。