在Java 8中,可以使用Stream API来将List转换为List。
首先,创建一个List:
List<Integer> integerList = Arrays.asList(1, 2, 3, 4, 5);
然后,使用mapToLong方法将每个整数映射为长整数:
List<Long> longList = integerList.stream().mapToLong(i -> i.longValue()).boxed().collect(Collectors.toList());
最后,使用boxed方法将LongStream转换回Stream,并使用Collectors.toList()方法将结果转换为List。