@author <a href='mail to:dduck@codehaus.org'>Donald Duck</a>this.<field>) when referencing member fields, instead use prefixes (s_ and m_)THIS_IS_A_CONSTANTMyClass.myStaticMethod
// correct
if (true) {
return true;
}
// wrong
if (true) return true;
|
if (...) {
...
}
|
public String getName() { return name; }
|
try (...) {
...
} catch {
...
} finally {
...
}
|
for (int i = 0; i < 10; i++) {
if (i == 5) {
i += 5;
}
}
|