I'm playing around with 2-Dimensional arrays in Java a bit and i just cant seem to find a difference between those two ways of initializing a 2-Dimensional Array.
//Option one
int field[][] = new int[n][n];
//Option two
int[][] field = new int[n][n];