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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。