gpt4 book ai didi

java - 为什么mapToInt不能与collect(toList())一起使用?

转载 作者:行者123 更新时间:2023-12-02 04:32:43 27 4
gpt4 key购买 nike

我写了这段代码:

import java.util.*;
import java.util.stream.Collectors;

public class Main {

public static void main(String... args) {
List<String> a = Arrays.asList("One", "Two", "three");
List<Integer> lengths = a.stream().mapToInt(String::length).collect(Collectors.toList());

}
}

但它不想编译,说:

Error:(8, 68) java: method collect in interface java.util.stream.IntStream cannot be applied to given types;
required: java.util.function.Supplier<R>,java.util.function.ObjIntConsumer<R>,java.util.function.BiConsumer<R,R>
found: java.util.stream.Collector<java.lang.Object,capture#1 of ?,java.util.List<java.lang.Object>>
reason: cannot infer type-variable(s) R
(actual and formal argument lists differ in length)

这里发生了什么?为什么有限制?如果你使用 map 。而不是mapToInt,它工作得很好。

最佳答案

mapToInt产生 IntStream ,其中没有 collect采取单一的方法Collector论证。

由于最终结果是 List<Integer> ,您不必转换 StreamIntStream :

List<Integer> lengths = a.stream().map(String::length).collect(Collectors.toList());

转变StreamIntStream如果您想收集 Stream 的元素,那就有意义了到原始数组:

int[] lengths = a.stream().mapToInt(String::length).toArray();

如果你想转变成IntStream并仍然使用collect方法,您可以编写以下内容(不太推荐):

List<Integer> lengths = 
a.stream()
.mapToInt(String::length)
.collect(ArrayList::new, ArrayList::add, ArrayList::addAll);

关于java - 为什么mapToInt不能与collect(toList())一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50552258/

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