Integer [][] x = {{1,2,3},{4},{5,6}};
在stdout中打印元素的最佳方法是什么?
1
2
3
4
5
6
我试过了Arrays.deepToString(x) but doesnt output what I desire
答案 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