gpt4 book ai didi

java - Java 填充二维数组中的特定行

转载 作者:行者123 更新时间:2023-12-01 13:41:18 25 4
gpt4 key购买 nike

我想知道我们是否可以在java中填充二维数组中的指定情况例如

String[][] Dictionary = new String[25][2];
Dictionary[count][] = word.getName();
Dictionary[][count] = word.getHint();

我不知道我的问题是否清楚,但我正在搜索的只是部分填充二维数组而不是所有行或所有列

最佳答案

不确定您正在尝试什么,但如果您想填充整个列或行,您可以按以下方式执行此操作:

int size=100;
int dest=50; //value of the column/row you want to fill
String[][] Dictionary = new String[size][size];
//LOOP FOR FILLING COLUMN :
for (int i=0; i< size;i++){
Dictionary[i][dest] = word.getName();
}
//LOOP FOR FILLING ROW :
for (int i=0; i< size;i++){
Dictionary[dest][i] = word.getName();
}

如果您只想在数组中的特定索引处准时输入特定值,则必须在“中断”中填写先前的索引:

i=1; //index row
j==1;//index column
Dictionary[i][j] = word.getName();

关于java - Java 填充二维数组中的特定行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20748280/

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