Possible Duplicate:
Difference between int[] array and int array[]
In Java, we can declare an array in these two styles:
int a[];
int []b;
Is there any difference?
Possible Duplicate:
Difference between int[] array and int array[]
In Java, we can declare an array in these two styles:
int a[];
int []b;
Is there any difference?