I can't make up my mind between
@MyAnnotation
public void foo(){}
and
@MyAnnotation public void foo(){}
Is there a best-practice emerging?
|
1
|
I can't make up my mind between
and
Is there a best-practice emerging?
|
||
|
|
|
We use the first case. Annotations don't fit on one line in some cases.
|
||
|
|
|
Well, we can't even agree where to put an { :-( My preference is the former, especially as there can be more than one annotation. The examples I'm familiar with use this style. |
||
|
|
|
|
Annotations can have parameters, it can become very long if you put the annotation plus its parameters plus the method header all on one line.
|
||
|
|
|
|
I'd say there is no hard fast rule for this. You may want to do either depending on the situation. For example, if your class has big bunch of short methods, it's sometimes desirable to condense them onto one line to reduce code noise:
Like-wise, if you have a more substantial method with a complex annotation, the expanded form is more desirable. |
||
|
|
|
|
I would generally use the first case. However, one particular instance where I put the annotation on the same line is with the In the general case, you do want your annotations to stand out, as they're often a departure from what the developer would expect from an unannotated method. So, for example, if I set a timeout on my |
||
|
|