Is there a better way to negate a boolean in Java than a simple if-else?
if (theBoolean) theBoolean = false; else theBoolean = true;
|
|
|||||||||||||||||
|
Less keystrokes if your variable is longer then four letters :) |
|||||||||||||||||
|
|
The downside of |
|||||
|
EDIT : Why do you have to? Just test the opposite as below :
|
||||
|
|