gpt4 book ai didi

java - 使用 arrayList java 保存获取值

转载 作者:行者123 更新时间:2023-12-01 05:39:15 26 4
gpt4 key购买 nike

在我的示例中,我每次都尝试获取 val(0) 和 val(1)。
for 循环之后,我需要保存我的值以将它们用于其他计算:

  String[] columns = { "col1" , "col2" }; 
String[] y = { "TEST", "BUG" ,"ENH" };
List<int[]> values = new ArrayList<int[]>();
for (int j = 0; j < y.length; j++) {
// do some actions
for(int[] v : values) {
//v is the array for one iteration, use it like this:
int col1 = v[0];
int col2 = v[1];
values .add(v);
}
}

System.out.prinln(values) =>gives : []

for循环之外,我的值被提升,我该如何在for之后获取我的值?
谢谢

最佳答案

我也不明白这个问题,但是,这是我解释问题试图做什么的最佳猜测:

String[] columns = {"col1" , "col2"};
String[] y = { "TEST", "BUG" ,"ENH"};
int[][] values = new int[y.length][columns.length]; // 2D array

for (int j = 0; j < y.length; j++) {
for (k = 0; k < columns.length; k++) {
values[j][k] = table.getVal(j, columns[k]);
}
}

关于java - 使用 arrayList java 保存获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7568840/

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