1. 程式人生 > >java——Arrays.asList()方法

java——Arrays.asList()方法

Arrays.asList() 是將陣列作為列表

問題來源於:

複製程式碼
public class Test {
    public static void main(String[] args) {
        int[] a = {1,2,3,4};
        List list = Arrays.asList(a);
        System.out.println(list.size());  //1
    }

}
複製程式碼

期望的輸出是 list裡面也有4個元素,也就是size為4,然而結果是1.

原因如下:

在Arrays.asList中,該方法接受一個變長引數,一般可看做陣列引數,但是因為int[] 本身就是一個型別,所以a變數作為引數傳遞時,編譯器認為只傳了一個變數,這個變數的型別是int陣列,所以size為1,相當於是List中陣列的個數。基本型別是不能作為泛型的引數,按道理應該使用包裝型別,但這裡缺沒有報錯,因為陣列是可以泛型化的,所以轉換後在list中就有一個型別為int的陣列

複製程式碼
/**
     * Returns a fixed-size list backed by the specified array.  (Changes to
     * the returned list "write through" to the array.)  This method acts
     * as bridge between array-based and collection-based APIs, in
     * combination with {@link Collection#toArray}.  The returned list is
     * serializable and implements {
@link RandomAccess}. * * <p>This method also provides a convenient way to create a fixed-size * list initialized to contain several elements: * <pre> * List&lt;String&gt; stooges = Arrays.asList("Larry", "Moe", "Curly"); * </pre> * *
@param a the array by which the list will be backed * @return a list view of the specified array */ @SafeVarargs public static <T> List<T> asList(T... a) { return new ArrayList<>(a); }
複製程式碼

返回一個受指定陣列支援的固定大小的列表。(對返回列表的更改會“直寫”到陣列。)此方法同 Collection.toArray 一起,充當了基於陣列的 API 與基於 collection 的 API 之間的橋樑。返回的列表是可序列化的.

所以,如果是建立多個列表,在傳引數時候,最好使用Arrays.copyOf(a)方法,不然,對列表的更改就相當於對陣列的更改。

複製程式碼
public class Test {
    public static void main(String[] args) {
        Integer[] a = {1,2,3,4};
        List list = Arrays.asList(a);
        System.out.println(list.size());  //4
    }

}
複製程式碼

最後提醒,如果Integer[]陣列沒有賦值的話,預設是null,而不是像int[]陣列預設是0。