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]
相關用法
- Java Guava Bytes.asList()用法及代碼示例
- Java Guava Chars.asList()用法及代碼示例
- Java Guava Longs.asList()用法及代碼示例
- Java Guava Floats.asList()用法及代碼示例
- Java Guava Shorts.asList()用法及代碼示例
- Java Guava Doubles.asList()用法及代碼示例
- Java Guava Booleans.asList()用法及代碼示例
- Java 8 Arrays parallelSort()用法及代碼示例
- Java Guava Ints asList()用法及代碼示例
- Java Java.util.Arrays.equals()用法及代碼示例
- Java Arrays.fill()用法及代碼示例
- Java Arrays.binarySearch()方法用法及代碼示例
- Java Arrays.sort()用法及代碼示例
- Java Arrays.toString()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 Arrays asList() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。