本帖最后由 韩金蕊 于 2012-1-2 23:47 编辑
请问下面代码中row的作用?
class Array
{
public static void main(String[] args)
{
int[][] twoD = new int[4][];
twoD[0] = new int[4];
twoD[1] = new int[5];
twoD[2] = new int[6];
twoD[3] = new int[7];
for(int[] row:twoD)
{
for(int b:row)
System.out.print(b+" ");
System.out.println();
}
}
} |