在java中填充数组

时间:2013-01-16 03:59:46

标签: java

所以基本上我试图用9个值填充array []元素,但是我不知道如何在这段代码中获取索引。我想让它每次填充数组中的下一个元素。

public boolean check(int data[][], int x, int y){
int array[] = new int[9];
int xmax = x+3;
int ymax = y+3;

        for(int i = x; i<xmax; i++){
            for(int j = y; j<ymax; j++){
                array[] = data[i][j];//array[what here?]
            }
        }
}

1 个答案:

答案 0 :(得分:1)

for (int i = x; i < xmax; ++i) {
    for (int j = y; j < ymax; ++j) {
        array[3 * (i - x) + (j - y)] = data[i][j];
    }
}