[HD Pg 0, Sec. 9.3.1 - multidimensional-arrays]
Posted: Tue Apr 14, 2020 3:37 pm
In the step 2 it is mentioned that the initialisation of iaaa[0][0] can be made throught new int[]{1,2,3,4} or just {1,2,3,4} but this doesn't seems to be correct. The initializer is only permitted along with declaration. so the second form is incorrect.