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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You should check The Java Coding Style Guide. Particularly section 6.1 describes the suggested layout for a class. |
|||||||
|
|
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). |
|||||
|
|
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. |
|||||
|