In my hunt for some help to a problem I was having I came across this:
p.Enabled = p.Enabled != true;
What exactly does this mean? Ive never seen it before,
nb: the preceeding line was var p = this.PageRepository.GetPage(id);
|
In my hunt for some help to a problem I was having I came across this:
What exactly does this mean? Ive never seen it before, nb: the preceeding line was var p = this.PageRepository.GetPage(id); |
|||
| show 4 more comments |
is the same as
in other words: it flips (or toggles) |
|||||||||||||||||
|
|
It's an awkwardly written bool toggle switch. Each call toggles the state from true to false. I'd have written it:
Edit - I suppose I should say, awkwardly written in my opinion only. |
|||||||||
|
|
So many answers ... I just want to break it down a little bit more:
Is semantically equivalent to:
So:
Thus, from the Truth Table, it can be seen it is the same* as the logical not (
(I would imagine that most [experienced] programmers prefer this latter form as it's a fairly common idiom.) Happy coding. *Note the addition of |
||||
|
|
|
The test |
|||
|
|
|
if But if If |
|||
|
|
|
Essentially this would flip the value of p.Enabled. So if it were true then It might make more sense if it were written like so:
|
|||
|
|
|
Think of it this way:
Now, |
|||
|
|
|
The line evaluates
|
|||
|
|
|
Use this function:
|
||||
|
|
p.Enabled = !p.Enabled;. – JasonFruit Mar 6 '12 at 18:37boolor abool?? – 32bitkid Mar 6 '12 at 18:42