14

It is a very simple question, but I think it is a little bit controversial.

When I code Java classes I use the following order.

class Foo {

    // static fields
    // instance fields
    // constructors
    // methods (non-static and static methods are mixed but sorted based on their functionalities)
}

I read an article that says:
(From http://code.google.com/webtoolkit/makinggwtbetter.html#codestyle)

Java types should have the following member order:

Nested Types (mixing inner and static classes is okay)
Static Fields
Static Initializers
Static Methods
Instance Fields
Instance Initializers
Constructors
Instance Methods

If I follow the article, the order above should be

class Foo {

    // static fields
    // static methods
    // instance fields
    // constructors
    // instance methods
}

In the case of the latter, I feel uncomfortable having some methods before constructors. Which one is the more widely-used convention?

Heejin
  • 4,463
  • 3
  • 26
  • 30

7 Answers7

24

I believe Sun's (now Oracle's) Java coding standards are more widely used. This is what you are currently using too.

From Code Conventions for the Java TM Programming Language :

3.1.3 Class and Interface Declarations

The following table describes the parts of a class or interface declaration, in the order that they should appear.

  1. Class/interface documentation comment ( /*.../)
  2. class or interface statement
  3. Class/interface implementation comment ( /.../), if necessary
  4. Class (static) variables
  5. Instance variables
  6. Constructors
  7. Methods
dogbane
  • 266,786
  • 75
  • 396
  • 414
  • 1
    Hmm I see. I think I am using standards. Some of Google's coding styles make me confused, especially Android examples in sdk. – Heejin Sep 23 '11 at 14:37
  • 4
    what about static methods vs methods? – ealeon Feb 20 '19 at 16:09
  • 1
    If doesn't say anything specifically about static methods though. I typically put them above instance variables if they are public. It's even more true for me when they are factory methods. I'll try to find a more complete description of the standard conventions. – Dici Jun 26 '19 at 09:07
5

Personally I use option 2 (static fields and methods prior to instance elements and constructs). To me this makes sense when scanning a file because from a user of a class, I can access the static stuff without needing an instance. Therefore it is nice to see them prior to the constructors because I don't care about constructors when using static stuff.

Tomislav Nakic-Alfirevic
  • 10,017
  • 5
  • 38
  • 51
John B
  • 32,493
  • 6
  • 77
  • 98
  • counterargument is that 99% of the time you use instance so having static and inner classes stuff out of the way is much better at the bottom – Enerccio Dec 11 '21 at 11:39
  • @Enerccio I am not sure I agree with your assertion. I find that many times classes are either all-status utilities, all instance method classes or when there is a mix, the static methods tend to be the entry points (like factory methods). So I would propose that when there is a mix, you generally start with the static methods then use the instance methods once you have an instance. – John B Dec 11 '21 at 13:02
  • There is also using static methods for optimization – Enerccio Dec 12 '21 at 14:04
3

Just for the record, this is from the GWT article you linked:

We acknowledge that plenty of great approaches exist out there. We're simply trying to pick one that is at least somewhat consistent with Sun's Java coding conventions...

So the style they use

  1. is proposed for GWT not for general usage
  2. deviates somewhat from the standard conventions
  3. is acknowledged to be one of many good standards

So I'd say, if there's no reason not to stick with your current conventions, why change them?

Thomas
  • 87,414
  • 12
  • 119
  • 157
2

The Java Code Conventions suggest the following (which is basically what you already do):

  • Class (static) variables: First the public class variables, then the protected, then package level (no access modifier), and then the private
  • Instance variables: First public, then protected, then package level (no access modifier), and then private
  • Constructors
  • Methods: These methods should be grouped by functionality rather than by scope or accessibility. For example, a private class method can be in between two public instance methods. The goal is to make reading and understanding the code easier.
michael667
  • 3,241
  • 24
  • 32
0

I don't know, but for what it's worth, I do what you do. Constructors on top, methods grouped by functionality (with no regard to staticness) below. Static methods tend to group.

The exception is static factory methods that I intend for you to use instead of constructors -- if so, they are before constructors, and the ctors are private/protected.

Lou Franco
  • 87,846
  • 14
  • 132
  • 192
0

It's all a matter of preference, of course...

Your convention is more consistent with the default ordering in Javadoc (i.e. static and non-static methods mixed together). This is what I normally do, too.

However, inner classes are often placed at the bottom of a class as they are often 'secondary' or 'helper' classes, and it seems odd to put them before the main meat of the outer class.

DNA
  • 42,007
  • 12
  • 107
  • 146
0

I put static initializers and methods before constructors, so I guess I'm following your citation.

Why the discomfort? It seems like a small thing.

duffymo
  • 305,152
  • 44
  • 369
  • 561