This question already has answers here:
How to convert int[] into List<Integer> in Java?

(20个答案)


7年前关闭。




int[]数组元素重新复制到ArrayList的最佳方法是什么?

我需要快速执行此操作,所以最快的方法是什么?

最佳答案

使用 Arrays#asList(T... a) 创建“由指定数组支持的固定大小的列表。(更改为返回列表的列表,“直写”到该数组。)

Integer[] intArray = {1, 2, 3, 42}; // cannot use int[] here
List<Integer> intList = Arrays.asList(intArray);

或者,解耦两个数据结构:
List<Integer> intList = new ArrayList<Integer>(intArray.length);

for (int i=0; i<intArray.length; i++)
{
    intList.add(intArray[i]);
}

或更简洁:
List<Integer> intList = new ArrayList<Integer>(Arrays.asList(intArray));

关于java - 将int []转换为ArrayList ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10269300/

10-11 22:28