Java - Best way to print 2D array?

前端 未结 12 738
庸人自扰
庸人自扰 2020-11-22 15:07

I was wondering what the best way of printing a 2D array was. This is some code that I have and I was just wondering if this is good practice or not. Also correct me in any

12条回答
  •  孤独总比滥情好
    2020-11-22 16:03

    I would prefer generally foreach when I don't need making arithmetic operations with their indices.

    for (int[] x : array)
    {
       for (int y : x)
       {
            System.out.print(y + " ");
       }
       System.out.println();
    }
    

提交回复
热议问题