I have recently been thinking about the difference between the two ways of defining an array:
int[] array
int array[]
when declaring a single array reference, there is not much difference between them. so the following two declarations are same.
int a[]; // comfortable to programmers who migrated from C/C++
int[] a; // standard java notation
when declaring multiple array references, we can find difference between them. the following two statements mean same. in fact, it is up to the programmer which one is follow. but the standard java notation is recommended.
int a[],b[],c[]; // three array references
int[] a,b,c; // three array references