Actually, according to the
Java specification, Java has no "multidimensional" arrays. The Java language only has "arrays of arrays".
Declaring such an array can be done like the following:
int ia[][] = { {1,2,3}, {4,5,6} };
The above declaration creates ia[2][3].