Is there any difference between delaring an array like
int[] array = new int[10];
and declaring it like
int array[] = new int[10];
?
Both are valid in Java but I havent found any differences (initialization or something?) or is it just two different ways to describe the same thing for the compiler?