gpt4 book ai didi

java - 从数组返回流作为 int[] 而不是 Integer[]

转载 作者:行者123 更新时间:2023-12-01 07:43:15 24 4
gpt4 key购买 nike

我有这个数组:

Integer[] originalItems = itemsArray.stream()
.distinct()
.sorted()
.toArray(Integer[]::new);

我想将其返回为 int[]而不是 Integer[] .

我尝试调用.toArray(int[]::new)但我收到此错误:

no instance(s) of type variable(s) A exist so that int[] conforms to A[]

最佳答案

.mapToInt(Integer::intValue).toArray();

而不是

.toArray(Integer[]::new);

因为

<A> A[] toArray(IntFunction<A[]> generator);

不适用于原始类型。

关于java - 从数组返回流作为 int[] 而不是 Integer[],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61188177/

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