写完这段以后,while并不能循环遍历,只能输出其中一个数组,想知道这是为什么
public static void main(String[] args) {
int [][] moll = {{1,4,5,6},{7,9,10,6},{5,7,9,8},{1,6,12,7}};
int a=0,b=0;
while (a<moll.length){
a++;
while(b<moll[a].length){
System.out.println(moll[a][b]);
b++;
}
}
}