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