Which one is better Java coding style?
boolean status = true;
if (!status) {
//do sth
} else {
//do sth
}
or:
My personal feeling when it comes to reading
if(!status) : if not status
if(status == false) : if status is false
if you are not used to !status reading. I see no harm doing as the second way.
if you use "active" instead of status I thing if(!active) is more readable
Former, of course. Latter is redundant, and only goes to show that you haven't understood the concept of booleans very well.
One more suggestion: Choose a different name for your boolean variable. As per this Java style guide:
is prefix should be used for boolean variables and methods.
isSet,isVisible,isFinished,isFound,isOpenThis is the naming convention for
booleanmethods and variables used by Sun for the Java core packages.Using the
isprefix solves a common problem of choosing bad boolean names likestatusorflag.isStatusorisFlagsimply doesn't fit, and the programmer is forced to chose more meaningful names.Setter methods for
booleanvariables must have set prefix as in:
void setFound(boolean isFound);There are a few alternatives to the
isprefix that fits better in some situations. These arehas,canandshouldprefixes:boolean hasLicense(); boolean canEvaluate(); boolean shouldAbort = false;
The former. The latter merely adds verbosity.
First style is better. Though you should use better variable name
The first one. But just another point, the following would also make your code more readable:
if (!status) {
// do false logic
} else {
// do true logic
}
Note that there are extra spaces between if and the (, and also before the else statement.
EDIT
As noted by @Mudassir, if there is NO other shared code in the method using the logic, then the better style would be:
if (!status) {
// do false logic
}
// do true logic
I would suggest that you do:
if (status) {
//positive work
} else {
// negative work
}
The == tests, while obviously redundant, also run the risk of a single = typo which would result in an assignment.