二维数组的遍历

Posted ooo888ooo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二维数组的遍历相关的知识,希望对你有一定的参考价值。

遍历思想:首先使用循环遍历出二维数组中存储的每个一维数组,然后针对每个遍历到的一维数组使用循环遍历该一维数组中的元素

 

package ren.redface.demo;

/**
 * 
 * <p>Title: ArrayDemo.java</p>    
 * <p>Company: www.redface.ren</p>  
 * @author Alec Zhang  
 * @date 2020年4月12日
 */
public class ArrayDemo {
    
    public static void main(String[] args) {
        
        int[][] arr = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 } };
        
        for(int y=0; y<arr.length; y++) {
            for (int x = 0; x < arr[y].length; x++) {
                System.out.print(arr[y][x] + "  ");
            }
            System.out.println();
        }

    }
}

 

以上是关于二维数组的遍历的主要内容,如果未能解决你的问题,请参考以下文章

C 语言二级指针作为输入 ( 二维数组 | 二维数组遍历 | 二维数组排序 )

汇编学习:二维数组遍历

for循环二维数组的取值方式?

循环遍历二维数组的最快方法?

先遍历二维数组行,然后先遍历列

使用浮点数遍历二维数组时出错