In the code below, what is the value of x and why?
bool x =true;
x &= false;
|
|
|
|
|
|
|
x is false, becase (true & false) == false. &= is to & as += is to +. |
||||
|
|
|
is shorthand for:
so in your code: true & false resolves to false. |
||
|
|
|
|
is the same as
So, as moonshadow says: false... |
||
|
|
|
|
&= is the AND assignment operator (see this MSDN page). It's the same idea as += which you can read as: 'Perform the + operation on the variable and then assign it back to itself' |
||
|
|
|
|
Check out this MSDN Article Excerpt: Binary & operators are predefined for the integral types and bool. For integral types, & computes the logical bitwise AND of its operands. For bool operands, & computes the logical AND of its operands; that is, the result is true if and only if both its operands are true. So in other words this is saying that x is false in your example because (true and false) is false |
||
|
|
|
|
is just a short form of
x will be false at the end of that code. &= is an assignment operater there are a bunch of them(+=, -=, *=, /=, |= and more). They are just short ways to perform an operation on a variable and assign the result back to that variable. |
||
|
|
|
|
The & operator is a logical "and" that always evaluates both halves of the expression. Unless both operands are true, & returns false. x &= y is shorthand for x = x & y. Far more common in C# usage is the && operator, which returns the same value, but stops evaluating operands once a false value is found. This has to do with the side effects of functions that return values. For example:
will run ConnectToDatabase() in all cases, but only run ExecuteQuery if ConnectToDatabase() returns true. In this case, you don't want to try to run a query if the database is not connected. On the other hand:
will always execute VerifyIdentity() and RegisterRequest(), then evaluate the truthiness of their combined return values. |
||
|
|
|
|
This operator can be used with validation...
|
||
|
|