gpt4 book ai didi

Java Streams Collectors.toList() 与 map() 与 mapToInt()

转载 作者:行者123 更新时间:2023-12-02 00:57:18 28 4
gpt4 key购买 nike

我有这个对象:

String[] stringNum = new String[] {"1", "2", "3", "4", "5", "6", "7"};

我很难理解为什么它会起作用:

 List<Integer> intNums = Arrays.stream(stringNum)
.map(Integer::parseInt)
.collect(Collectors.toList());

但这不是:

 List<Integer> intNums = Arrays.stream(stringNum)
.mapToInt(Integer::parseInt)
.collect(Collectors.toList());

如果我理解正确的话 .map(Integer::parseInt).mapToInt(Integer::parseInt)应该返回相同的 IntStream在这种情况下由 .collect(Collectors.toList()) 处理.

最佳答案

.map(Integer::parseInt)返回 Stream<Integer> ,不是 IntStream 。这就是第一个片段起作用的原因。

IntStream没有collect()接受 Collector 的方法。因此,第二个片段映射 Stream<String>IntStream无法使用.collect(Collectors.toList()) .

要使用collect(Supplier<R> supplier,ObjIntConsumer<R> accumulator,BiConsumer<R, R> combiner)方法IntStream你可以写:

List<Integer> intNums = Arrays.stream(stringNum)
.mapToInt(Integer::parseInt)
.collect(ArrayList::new,ArrayList::add,ArrayList::addAll);

但是,由于您的输出是 List<Integer> ,没有必要创建中间 IntStream ,因为这需要将 int 装箱稍后。您的Stream<Integer>变体(第一个片段)更有意义。

关于Java Streams Collectors.toList() 与 map() 与 mapToInt(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61185019/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com