1 public class ArrayInitNested {2 3 public static void main (String [] args) {4 5 int [][] a = { {1, 2}, {3, 4}};6 }7 }8