stream流将数组转为list
时间: 2023-11-17 14:07:52 浏览: 94
数组和list相互转换
可以使用Java 8中的Stream流将数组转为List,示例代码如下:
```
int[] arr = {1, 2, 3, 4, 5};
List<Integer> list = Arrays.stream(arr).boxed().collect(Collectors.toList());```
上述代码中,首先使用Arrays.stream()方法将数组转为IntStream流,然后使用boxed()方法将IntStream流转为Stream<Integer>流,最后使用collect()方法将Stream<Integer>流转为List<Integer>。
阅读全文