I have recently been thinking about the difference between the two ways of defining an array:
int[] array
int array[]
There is no real difference; however,
double[] items = new double[10];
is preferred as it clearly indicates that the type is an array.