Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

if (theBoolean) theBoolean = false; else theBoolean = true;
share|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

5 Answers

up vote 144 down vote accepted
theBoolean = !theBoolean;
share|improve this answer
2  
That's...really obvious—oops! Don't know why I didn't think of it. Thanks. – Kevin Griffin Oct 22 '08 at 2:46
2  
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
3  
@ypnos: !!bool == !(!(bool)) == bool. – Christoffer Hammarström Jul 21 '11 at 12:27
!boolean pls :-) – Blundell Jan 31 '12 at 9:56
theBoolean ^= true;

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

share|improve this answer
1  
and it conforms to DRY :) – Tetha Oct 22 '08 at 6:21
7  
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
2  
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
theBoolean = ! theBoolean;
share|improve this answer

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

share|improve this answer
3  
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
theBoolean = theBoolean ? false : true;

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

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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