gpt4 book ai didi

java - 整数数组列表的数组列表

转载 作者:行者123 更新时间:2023-12-01 07:44:54 27 4
gpt4 key购买 nike

我有一个由整数数组列表组成的数组列表。 [数组列表>列表]。如何为任何内部 ArrayList 的索引设置值?我不想构建一个整数数组列表并使用 add 函数将它们添加到列表列表中,但我想为其设置值,因为我已经有了列表列表。

最佳答案

我假设你有类似的东西:

List<List<Integer>> list = new ArrayList<>(outerSize);

您还说过:

I do not want to build an ArrayList of Integers and add them to the List of List using add function, but I want to set values to it, as I already have the List of List.

如果这是真的,则意味着您已经完成了此操作或类似操作:

for (int i = 0; i < outerSize; ++i) {
List<Integer> inner = new ArrayList<>(innerSize);
for (int j = 0; i < innerSize; ++i) {
inner.add(defaultValue);
}
list.add(inner);
}

因此,考虑到所有这些,它只是 get (从外部列表获取内部列表)和 set (为其设置值):

list.get(outerIndex).set(innerIndex, value);

关于java - 整数数组列表的数组列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55179803/

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