up vote 14 down vote favorite
6
share [g+] share [fb]

Is there a better way to negate a boolean in Java than a simple if-else?

if (theBoolean) theBoolean = false; else theBoolean = true;
link|improve this question

oh nice, I was about to ask the same question, although my question would've been specific to javascript/as3, or ECMAScript in general I suppose... which will easily be covered by this question. – matt lohkamp Jan 7 '09 at 6:36
feedback

5 Answers

up vote 76 down vote accepted
theBoolean = !theBoolean;
link|improve this answer
1  
That's...really obvious—oops! Don't know why I didn't think of it. Thanks. – Kevin Griffin Oct 22 '08 at 2:46
1  
I vote for a !!bool operator similiar to ++i and --i ;-)) – ypnos Oct 22 '08 at 2:50
!Boolean seems like a natural choice - maybe in the future. – matt lohkamp Jan 7 '09 at 6:38
@ypnos: !!bool == !(!(bool)) == bool. – Christoffer Hammarström Jul 21 '11 at 12:27
!boolean pls :-) – Blundell 11 hours ago
feedback
theBoolean ^= true;

Less keystrokes if your variable is longer then four letters :)

link|improve this answer
1  
and it conforms to DRY :) – Tetha Oct 22 '08 at 6:21
3  
but it's less obvious to readers who aren't all that up on xor... – Scott Stanchfield Oct 22 '08 at 18:48
2  
Brevity is the soul of wit. – Paul Brinkley Oct 22 '08 at 22:47
now I get to offhandedly name-drop (syntax-drop?) XOR to look cool in front of my programmer friends. Your answer ought to be merged with the chosen one, together they are pure perfection. – matt lohkamp Jan 7 '09 at 6:39
feedback
theBoolean = ! theBoolean;
link|improve this answer
feedback

The downside of theBoolean ^= true; is that it returns an integer (0 or 1)

link|improve this answer
1  
The question is tagged Java and in Java this is not the case, it returns a boolean. JLS 15.26: "...The type of the assignment expression is the type of the variable..." – Carlos Heuberger Feb 6 '10 at 21:28
feedback
theBoolean = theBoolean ? false : true;

EDIT : Why do you have to? Just test the opposite as below :

if (!theBoolean) {
    // do stuff;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.