int[] 转 List 的最佳写法
- Java
- 2021-07-07
- 119热度
- 0评论
int[] a = new int[]{1, 2, 3}; List<Integer> l = Arrays.stream(a).boxed().collect(Collectors.toList());
int[] a = new int[]{1, 2, 3}; List<Integer> l = Arrays.stream(a).boxed().collect(Collectors.toList());