码迷,mamicode.com
首页 > 编程语言 > 详细

二维数组遍历的方式(for普通循环和foreach循环)

时间:2019-04-21 17:14:24      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:for   out   static   style   []   ++   pre   com   nbsp   

package com.Summer_0421.cn;

/**
 * @author Summer
 * 二维数组遍历的方式for普通循环和foreach循环
 */
public class Test03 {

    public static void main(String[] args) {
        show1();
        show2();
    }

    private static void show2() {
        int[][] its = new int[][]{{1},{1,2},{1,2,3},{1,2,3,4}};
        for (int[] is : its) {
            for (int i : is) {
                System.out.print(i+" ");
            }
            System.out.println();
        }
    }

    private static void show1() {
        int[][] its = new int[][]{{1},{1,2},{1,2,3},{1,2,3,4}};
        for (int i = 0; i < its.length; i++) {
            for (int j = 0; j < its[i].length; j++) {
                System.out.print(its[i][j]+" ");
            }
            System.out.println();
        }
    }

}

 

二维数组遍历的方式(for普通循环和foreach循环)

标签:for   out   static   style   []   ++   pre   com   nbsp   

原文地址:https://www.cnblogs.com/summerdata/p/10745833.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!