+ 1
Java Array
Does it matter where the bracket goes after or before the name of the array? For example, int myArray[] and int []myArray. Are they the same?
2 Answers
+ 3
I think prepending the brackets is good practice
+ 1
it's the same but common practise is int[] myArray.