gpt4 book ai didi

java - 从 Eclipse 集合 IntList/IntIterable 创建 IntStream 和 Stream

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:00:52 25 4
gpt4 key购买 nike

我有一个 Eclipse Collections IntList .我怎么能

  1. 创建 Java IntStream从这个列表
  2. 创建 Java Stream<Integer>从这个列表

不复制元素?

最佳答案

Eclipse Collections 10.0您现在可以直接在 IntList 上调用 primitiveStream

IntStream intStream = IntLists.mutable.with(1, 2, 3, 4, 5).primitiveStream();

Stream<Integer> stream = intStream.boxed();

关于java - 从 Eclipse 集合 IntList/IntIterable 创建 IntStream 和 Stream<Integer>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55498768/

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