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


Java Arrays asList()用法及代码示例


java.util.Arrays类的asList()方法用于返回由指定数组支持的固定大小的列表。

与Collection.toArray()结合使用时,此方法充当基于数组的API和基于集合的API之间的桥梁。返回的列表是可序列化的,并实现RandomAccess。

这在O(1)时间中运行。


用法:

public static List asList(T... a)

参数:此方法采用需要转换为List的数组a。

返回值:此方法返回指定数组的列表视图。

以下示例说明了asList()方法。

示例1:

// Java program to demonstrate 
// asList() method for String value 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) 
        throws Exception 
    { 
  
        try { 
  
            // creating Arrays of String type 
            String a[] = new String[] { "A", "B", "C", "D" }; 
  
            // getting the list view of Array 
            List<String> list = Arrays.asList(a); 
  
            // printing the list 
            System.out.println("The list is: " + list); 
        } 
  
        catch (NullPointerException e) { 
            System.out.println("Exception thrown : " + e); 
        } 
    } 
}
输出:
The list is: [A, B, C, D]

示例2:

// Java program to demonstrate 
// asList() method for Integer value 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) 
        throws Exception 
    { 
  
        try { 
  
            // creating Arrays of Integer type 
            Integer a[] = new Integer[] { 10, 20, 30, 40 }; 
  
            // getting the list view of Array 
            List<Integer> list = Arrays.asList(a); 
  
            // printing the list 
            System.out.println("The list is: " + list); 
        } 
  
        catch (NullPointerException e) { 
            System.out.println("Exception thrown : " + e); 
        } 
    } 
}
输出:
The list is: [10, 20, 30, 40]


相关用法


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