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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。