多维数组可以看成数组中的数组,对于二维数组,其中每个元素又是一个一维数组,定义数组时有两种初始化方式:
1、直接对数组初始化
int[][] a = {{1,2}, {3,4}, {5,6} };
2、对数组每个元素进行初始化,用到for循环
public class TestArray {
public static void main(String[] args) {
int rows = 5;
int cols = 3;
int[][] array = new int[rows][cols];
for(int i=0; i<rows; i++) {
for(int j=0; j<cols; j++) {
array[i][j] = i * j;
}
}
System.out.println(Arrays.deepToString(array));
}
}
希望能有帮助... |