Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Difference between int[] array and int array[]

Is int[] arr; functionally the same as int arr[];?

share|improve this question
Even more entertainingly, try: public int getIntArray()[]. – thasc Mar 3 '11 at 20:21
2  
i feel int arr[] is worse: int[] arr follows TYPE VAR_NAME style, whereas int arr[] is more like TY VAR_NAME PE – iluxa Mar 3 '11 at 20:23
2  
I find it amusing that what could easily have been written as a subjective question (which is better?) wasn't, and then it gets subjective answers and comments. – Isaac Truett Mar 3 '11 at 20:28
1  
If you ever decide to come visit StackOverflow again, accepting an answer to this question would be appreciated. – Isaac Truett Apr 21 '11 at 19:02

marked as duplicate by ThiefMaster Jun 30 '12 at 8:39

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

5 Answers

Yes. You can put the braces in either place when declaring an array.

Bonus: you can even put 'em here: int []arr

share|improve this answer
1  
+1. Also see ibiblio.org/java/course/week2/47.html – Bala R Mar 3 '11 at 20:21

Yes, the functionality is the same. You can have the braces anywhere.

int[] a,b,c[];

is equivalent to

int a[],b[],c[][];
share|improve this answer
1  
I hope you don't really write int[] c[]; in your own code! – Neil Mar 3 '11 at 20:45
Yea, sure I wont. It's just to show the possibility and semantics. – dev_musings Mar 3 '11 at 21:00

It's just the matter of style. You can pick the style you like. They perform exactly the same. Some claim that if you write "int[] array", it will be clearer that it's an array of integer rather than writing "int array[]".

share|improve this answer

It is, it's just to appease C++ developers they include int arr[]. (Or at least what I told in school)

share|improve this answer

Yes it's the same. int[] arr is more convenient though.

share|improve this answer

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