The answer to this related question says one dimensional arrays are zero inited. From a small test I just ran, it seems multi-dimensional arrays are not zero inited. Any idea why?
The spec seems to specify that the init of a multi-dimensional array is equivalent to a set of single-dimensional array inits, in which case all the cells should have been zero inited.
The test I ran is equivalent to:
public class Foo {
static int[][] arr;
public static void bar() {
arr = new int[20][20];
// in the second run of Foo.bar(), the value of arr[1][1] is already 1
// before executing the next statement!
arr[1][1] = 1;
}
}

