Java数组是一种容器类型,能够存储一个固定大小的同类型元素集合。而List是Java Collection Framework中的一个接口,能够动态地添加或删除元素。在开发中,我们经常需要将一个数组转化为List来方便使用。本文将从多个方面介绍Java中数组转化为List的方法。
一、使用Arrays.asList()
Arrays.asList()是Java中将数组转化为List的最便捷方式。它接受一个数组作为参数,并返回一个List对象。这个List对象是固定的,长度和数组一样。由于它返回一个List对象,因此可以使用List的任何函数和方法进行访问、操作。下面是一个示例:
public class ArrayToListExample {
public static void main(String[] args) {
Integer[] intArray = {1, 2, 3, 4, 5};
List < Integer > intList = Arrays.asList(intArray);
System.out.println(intList);
}
}
输出结果为:[1, 2, 3, 4, 5]。
需要注意的是,如果使用基本数据类型的数组,如int[],会将整个数组作为一个元素加入List中,而不是将数组中的元素逐个添加到List中。
二、使用Collections.addAll()
另一种将数组转化为List的方法是使用Collections.addAll()。该方法接受一个List和一个数组作为参数。它将数组中的元素逐个添加到List中。下面是一个示例:
public class ArrayToListExample {
public static void main(String[] args) {
int[] intArray = {1, 2, 3, 4, 5};
List < Integer > intList = new ArrayList < > ();
Collections.addAll(intList, Arrays.stream(intArray)
.boxed()
.toArray(Integer[]::new));
System.out.println(intList);
}
}
输出结果为:[1, 2, 3, 4, 5]。
需要注意的是,这种方法会创建一个新的List对象,并将数组中的元素逐个添加到List中。因此,如果数组中有大量元素,可能会导致性能问题。
三、使用循环逐个添加
第三种将数组转化为List的方法是使用循环逐个添加。该方法比较麻烦,但是可以让你更加自由地控制每个元素的添加方式。下面是一个示例:
public class ArrayToListExample {
public static void main(String[] args) {
int[] intArray = {1, 2, 3, 4, 5};
List < Integer > intList = new ArrayList < > ();
for (int i = 0; i < intArray.length; i++) {
intList.add(intArray[i]);
}
System.out.println(intList);
}
}
输出结果为:[1, 2, 3, 4, 5]。
需要注意的是,由于每次循环都会调用add()方法,因此这种方法可能会导致性能问题,特别是当数组中有大量元素的时候。
四、将List转换为数组
Java中也支持将List转换为数组的操作。下面是一个示例:
public class ListToArrayExample {
public static void main(String[] args) {
List < Integer > intList = new ArrayList < > ();
intList.add(1);
intList.add(2);
intList.add(3);
int[] intArray = intList.stream()
.mapToInt(Integer::intValue)
.toArray();
System.out.println(intArray);
}
}
输出结果为:[I@70dea4e。
需要使用Arrays.toString(intArray)将其转换为字符串输出。
五、将List转换为Array的其中一种方法
先给大家介绍一个很实用的工具类:org.apache.commons.lang3.ArrayUtils,它可以方便地处理数组。下面是一个示例:
public class ListToArrayExample {
public static void main(String[] args) {
List < Integer > intList = new ArrayList < > ();
intList.add(1);
intList.add(2);
intList.add(3);
int[] intArray = ArrayUtils.toPrimitive(intList.toArray(new Integer[intList.size()]));
System.out.println(intArray);
}
}
输出结果为:[1, 2, 3]。
需要注意的是,该方法调用时需要添加org.apache.commons.lang3.ArrayUtils包。如果没有该包,请在pom.xml文件中添加以下依赖:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.0</version>
</dependency>
以上就是Java中数组转化为List的几种方式。根据不同的需求,可以选择不同的方法。当然,上述方法并不是全部的方法,还有其他方式,例如使用Java 8 Stream API等。