vote up 1 vote down star

What is the difference between these two declarations of an array of native types in Java?

double items[] = new double[10];

double[] items = new double[10];

If they are the same is there any reason to prefer one over the other?

flag

58% accept rate

3 Answers

vote up 9 vote down check

There is no real difference; however,

double[] items = new double[10];

is preferred as it clearly indicates that the type is an array.

link|flag
double items[] is really there for the C programmers – Steve Kuo Feb 25 at 20:03
@Steve, That must be why I keep doing it that way. :-) – Paul Tomblin Feb 25 at 20:04
Let's see: public static void main( String [] args ) .... I use the later. – Oscar Reyes Feb 25 at 21:23
A counterargument can be made that double items[] clearly indicates the type and later that items just so happens to be an array - it all depends on what you're comfortable with. – MetroidFan2002 Mar 1 at 6:02
vote up 24 vote down

There is no difference.

I prefer the "type[] name" format at is is clear that the variable is an array (less looking around to find out what it is).

EDIT:

Oh wait there is a difference (I forgot because I never declare more than one variable at a time):

int[] foo, bar; // both are arrays
int foo[], bar; // foo is an array, bar is an int.
link|flag
vote up 0 vote down

there isn't really any difference between the two, most of it is purely personal preference though. I personally prefer using type[] name; as it clearly shows the type, and makes it a lot easier when scanning through your own code (as long as it is indented properly - and if you don't know how use some software that does it for you i.e. notepad++ - good for many languages, though just a text editor, and then learn from them - you can't program unless you indent!!!!!)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.