gpt4 book ai didi

java - 创建所有索引的列表 - 给定计数/大小

转载 作者:塔克拉玛干 更新时间:2023-11-01 23:03:12 24 4
gpt4 key购买 nike

是否有更优雅的方法来创建所有索引的列表?

    private List<Integer> getIndexList(final int count) {
final List<Integer> list = new ArrayList<>(count);

for (int i = 0; i < count; i++) {
list.add(i);
}
return list;
}

列表输出:

<[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]>

最佳答案

是的,使用流:

List<Integer> indexList = IntStream.range(0,list.size()).boxed().collect(Collectors.toList());

关于java - 创建所有索引的列表 - 给定计数/大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45207595/

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