gpt4 book ai didi

lambda - 返回数组的收集器

转载 作者:行者123 更新时间:2023-12-01 16:50:57 26 4
gpt4 key购买 nike

我有以下代码:

strings.stream().map( i->i.toUpperCase()).collect(Collectors.toList());

上面的代码返回List

我想实现将返回数组的模拟。

是否可以无需额外的 toArray 方法调用?

最佳答案

Stream 类有两个 toArray 方法 - 这是一个示例 with Stream::toArray(IntFunction)` :

String[] array = strings.stream().toArray(String[]::new);

关于lambda - 返回数组的收集器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30376891/

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