📜  如何循环遍历二维数组 java 代码示例

📅  最后修改于: 2022-03-11 14:52:05.585000             🧑  作者: Mango

代码示例1
// Program start method.
public static void main(String[] args) {
    String[][] array2D = new String[10][10]; // Create 2D array.

    for (int row = 0; row < array2D.length; row++) { // Loop through the rows in the 2D array.
        for (int col = 0; col < array2D[row].length; col++) { // Loop through the columns in the 2D array.
            array2D[row][col] = "row: " + row + ", column: " + col; // Set the data in the right row and column.
        }
    }
}