再一次跪求大佬
这本来是一个用for循环遍历的二维数组,因为我之前学过用foreach遍历一维数组所以我就想把这个二维数组也用foreach遍历,可是我看提示代码也没有错误,偏偏运行结果多两行奇怪的乱码
运行结果:123[I@15db9742
456[I@6d06d69c
package learnJava;
public class Learn_foreach遍历二维数组 {
public static void main(String[] args){
int [][] num= {{1,2,3},{4,5,6}};
for(int[] i : num){
for(int j : i){
System.out.print(j);
}
System.out.println(i);
}
}
}