相关文章推荐
发呆的春卷  ·  spark ...·  1 月前    · 
不要命的鸡蛋  ·  List (或ArrayList) ...·  1 月前    · 
深沉的烈马  ·  spring boot ...·  1 年前    · 
鼻子大的人字拖  ·  Using the Chicken ...·  1 年前    · 
强悍的牙膏  ·  %E5%BD%A9%E7%A5%A8%E6% ...·  1 年前    · 

list integer to list long java 8

在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。

  •