vote up 2 vote down star
2

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

if (theBoolean) theBoolean = false; else theBoolean = true;
flag

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 at 6:36

3 Answers

vote up 27 vote down check
theBoolean = !theBoolean;
link|flag
That's...really obvious—oops! Don't know why I didn't think of it. Thanks. – AquaMethod Oct 22 '08 at 2:46
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 at 6:38
vote up 7 vote down
theBoolean = ! theBoolean;
link|flag
vote up 5 vote down
theBoolean ^= true;

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

link|flag
and it conforms to DRY :) – Tetha Oct 22 '08 at 6:21
but it's less obvious to readers who aren't all that up on xor... – Scott Stanchfield Oct 22 '08 at 18:48
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 at 6:39

Your Answer

Get an OpenID
or

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