gpt4 book ai didi

java - 如何使用从 Java 中的方法返回的数组

转载 作者:行者123 更新时间:2023-11-30 06:25:40 26 4
gpt4 key购买 nike

<分区>

我创建了一个方法,从文件中读取一堆数字,取前两个数字作为数组的行和列长度,然后将其余数字转换为整数并将整数放入二维数组:

public static int[][] fillArray(String myFile){
//uses another class to create a text field
TextFileInput in = new TextFileInput(myFile);

int[][] filledArray;
//uses a method in class TextInputFile to read a line then go to the next line
String line = in.readLine();
//int i=0;
int row, col;
row = Integer.parseInt(line);
line = in.readLine();
col = Integer.parseInt(line);
filledArray = new int[row][col];
for(int i=0; i<row; i++){
for (int j=0; j<col; j++){
line = in.readLine();
filledArray[i][j] = Integer.parseInt(line);
}
}
return filledArray;
}

我的问题是如何访问多维数组 filledArray 中的各个元素?如,我将如何打印 filledArray[1][3] 中的内容或添加 filledArray[1][3]+filledArray[2][3] 在 main方法?

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