SE450
:
Arrays
[45/53]
Can have array of length 0;
not
the same as
null
:
numbers = new int[0];
Multidimensional array
int[][] table = new int[10][20];
int t = table[i][j];