vote up 8 vote down star

Hello. I have recently been thinking of the difference between the two ways of defining an array:

  1. int[] array
  2. int array[]

Is there a difference? I havent found anything in my Java book explaining me the difference and googling the question isnt bringing me any closer... I just dont know what to google after.

Thanks

flag

10 Answers

vote up 25 vote down check

They are semantically identical. The "int array[]" syntax was only added to help C programmers get used to java.

"int[] array" is much preferable, and less confusing.

link|flag
4  
The [] is part of the TYPE, not of the NAME. For me, that's the biggest difference. – André Neves Sep 24 '08 at 22:50
vote up 0 vote down

In Java, these are simply different syntactic methods of saying the same thing.

link|flag
vote up 0 vote down

They're the same. One is more readable (to some) than the other.

link|flag
vote up 0 vote down

They are completely equivalent. int [] array is the preferred style. int array[] is just provided as an equivalent, C-compatible style.

link|flag
vote up 0 vote down

No difference.

link|flag
vote up 3 vote down

There is no difference, but Sun recommends putting it next to the type as explained here

link|flag
vote up 0 vote down

Wow that went fast. Thanks to all!

link|flag
If it went so well, then pick an answer! ;-) – Forgotten Semicolon Sep 24 '08 at 19:15
1  
Hehe, I'm am new to this wonderful system. – mslot Sep 24 '08 at 19:17
vote up 4 vote down

The two commands are the same thing.

You can use the syntax to declare multiple objects:

int[] arrayOne, arrayTwo; //both arrays

int arrayOne[], intOne; //one array one int

see: http://java.sun.com/docs/books/jls/second_edition/html/arrays.doc.html

link|flag
vote up 19 vote down

There is one slight difference, if you happen to declare more than one variable in the same declaration:


int[] a, b;  // Both a and b are arrays of type int
int c[], d;  // WARNING: c is an array, but d is just a regular int

Note that this is bad coding style, although the compiler will almost certainly catch your error the moment you try to use d.

link|flag
1  
Writing that in real code would an instant sacking offence :) – skaffman Sep 24 '08 at 19:33
vote up 0 vote down

I didn't even know that int array[] was possible. Please don't do it. :)

link|flag

Your Answer

Get an OpenID
or

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