从不同大小的阵列打印元素

时间:2017-12-08 15:46:49

标签: java

Integer [][] x = {{1,2,3},{4},{5,6}};

在stdout中打印元素的最佳方法是什么?

1
2
3
4
5
6

我试过了Arrays.deepToString(x) but doesnt output what I desire

1 个答案:

答案 0 :(得分:3)

试试这个:

public class MyClass {
    public static void main(String args[]) {

        Integer [][] x = {{1,2,3},{4},{5,6}};

        for(Integer[] y : x) {

            for(Integer i : y) {

                System.out.println(i);

            }
        }

    }
}

输出:

1
2
3
4
5
6

这是:https://ideone.com/9ywcjz