gpt4 book ai didi

java - 如何从 java 中的二维数组中获取与特定列、行相关的数据值?

转载 作者:行者123 更新时间:2023-11-30 01:38:58 24 4
gpt4 key购买 nike

这是我用java编写的代码,我认为它是正确的。我只是不确定将结果设置为什么?我想返回与特定行列关联的元素

public int getElement(int row,int col){
int result = 0;
if(((row>=1) && (row <=rowArray.length))&&((col>=1) && (col <=colArray.length))){
result = ??
}
return result;
}

最佳答案

为什么要使用 2 个单独的数组来制作二维数组?

你的类(class)内容应该是这样的:

public int array2D[10][15]; // 10 row and 15 col

public int getElementAt(int rowIndex, int colIndex)
{
int ret;
if( rowIndex >= 0 && rowIndex < array2D.length && colIndex >= 0 && colIndex < array2D[0].length )
{
ret = array2D[rowIndex][colIndex];
}
else
{
// Throw something according to what you want or exit or special return value
}
return ret;
}

关于java - 如何从 java 中的二维数组中获取与特定列、行相关的数据值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1713307/

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