En realidad no hay diferencia cuando se utiliza en los parametros, pero en alguna otra parte del codigo podria haber confusiones
Aqui una explicacion del porque se tendria que hacer de una manera y no de otra
https://blogs.oracle.com/tor/entry/c...place_brackets Cita: Note that if you have code like this:
int[] a, b;
Here both a and b will be integer arrays. This is different than in C where the similar
int\* a, b;
would leave only a an array, and b a scalar!