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

where the inner class be placed is right in java? at the beginning of the outer class, or between the outer class fields declared position with outer class constructor or at the end of end class or first use place? any rule or best pratice?

share|improve this question
1  
There is no "right place." Wherever you think reads best. – Louis Wasserman Aug 11 '12 at 17:51

3 Answers

up vote 1 down vote accepted

You should check The Java Coding Style Guide. Particularly section 6.1 describes the suggested layout for a class.

share|improve this answer
if there are too inner static inner class, how to assign their order? such as subclass extends parentclass, there are both inner class, which is first? if assign them according to call sequence, the subclass is first, if assign them according to read sequence, the parent class is first, so which is first better? – jiafu Aug 12 '12 at 2:37
I don't see anywhere in the document that I linked which has any suggestions. I'd just choose one or the other and stick with it consistently throughout a project. – Code-Guru Aug 12 '12 at 20:10
I don't seee anywhere too. As you mentioned, keep some stycl is acceptable. – jiafu Aug 13 '12 at 1:14

An inner class is typically placed at the end of the outer class in Java before the last closing brace of the outer class.

In my opinion, this is better than placing them at the beginning for readability purposes - people usually wish to determine the context of the outer class first before looking at the inner class(es).

share|improve this answer
+1 to place inner classes at the end – Nestor Aug 11 '12 at 18:22
if there are too inner static inner class, how to assign their order? such as subclass extends parentclass, there are both inner class, which is first? if assign them according to call sequence, the subclass is first, if assign them according to read sequence, the parent class is first, so which is first better? – jiafu Aug 12 '12 at 2:42

Once I read “coding style” for GWT where advice to put nested types (inner and static classes) at the top of the class declaration before all other elements. After this I always do this in such way because this makes your class code more readable.

share|improve this answer
Well, more readable for people who expect them at the top. – EJP Aug 12 '12 at 0:51
if there are too inner static inner class, how to assign their order? such as subclass extends parentclass, there are both inner class, which is first? if assign them according to call sequence, the subclass is first, if assign them according to read sequence, the parent class is first, so which is first better? – jiafu Aug 12 '12 at 2:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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