Possible Duplicate:
Java modifiers syntax and format
Is it private static final or private final static. I do understand that both of them work, but would like to know the order in which the spec declares it.
Is it |
|||
|
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.
|
The order of access modifiers doesn't matter. They just have to be present. For method modifiers, the Java language spec notes, that it is it is customary, though not required, that they appear in the order consistent with that shown above in the production for MethodModifier., which is:
Addition recommended order for field modifiers (as of JLS 8.3.1):
recommended order for class modifiers (as of JLS 8.1.1):
(Annotation) is not a modifier, it's a placeholder for any annotation. Annotations should be put before any other modifier. |
|||||||||
|
|
The spec in this case is the § 8.3 of the JLS and § 8.3.1
FieldDeclaration:
FieldModifiersopt Type VariableDeclarators ;
FieldModifiers:
FieldModifier
FieldModifiers FieldModifier
FieldModifier: one of
Annotation public protected private
static final transient volatile
As you can see the order of the field modifiers can be anything you want. You can even mix annotations anywhere in there. |
|||
|
|
|
The order I've most seen is |
|||
|
|
|
I'm not sure what (if?) the spec says on the matter, but either one compiles. Therefore, it comes down to coder preference! |
|||
|
|
I can't find any preference mentioned in either direction in the spec. |
|||||
|