Reputation: 43129
In C++, is there any difference between doing &&
(logical) and &
(bitwise) between bool(s)?
bool val1 = foo();
bool val2 = bar();
bool case1 = val1 & val2;
bool case2 = val1 && val2;
Are case1
and case2
identical or if not how exactly do they vary and why would one choose one over the other? Is a bitwise and of bools portable?
Upvotes: 47
Views: 52235
Reputation: 182
int a = 0, b = 10;
if(a == 1 && (b/a) == 0) cout << "This is okay\n"; // the 2nd expression is never checked as the first one is false
cout << "Bingo\n";
if(a == 1 & (b/a) == 0) cout << "This is not okay\n"; // program crashes here trying to divide by zero
cout << "Bingo\n"; // this will never get printed
Upvotes: -3
Reputation: 85
"&&" is a "conditional logical "AND" it evaluates the second expression ONLY if the first is TRUE
"&" is a "non-conditional logical AND" <-- (if you are playing with boolean expressions) it evaluates both expression
MOREOVER "&" is a 'bitwise' operator that means it operates on a bit-level.
This example can make you understand better.
4 = 00000100 // 'four' bit set
5 = 00000101 // 'four' bit and 'one' bit set
00000100 (4) & // AND: only keep bits set in both
00000101 (5)
--------
00000100 (4)
00000100 (4) | // OR: keep bits set in either
00000101 (5)
--------
00000101 (5)
00000100 (4) ^ // EXCLUSIVE OR: keep bits only set in one but not the other
00000101 (5)
--------
00000001 (1)
Upvotes: 5
Reputation: 17
The logical operators && and || are used when evaluating two expressions to obtain a single relational result. The operator && corresponds with Boolean logical operation AND. This operation results true if both its two operands are true, and false otherwise.
The operator || corresponds with Boolean logical operation OR. This operation results true if either one of its two operands is true, thus being false only when both operands are false themselves.
Upvotes: 0
Reputation: 47699
There is a difference (well, two), though you wouldn't see it in your example.
"&" does a bitwise "AND" operation, meaning that 0x1 & 0x1 = 0x1
, but 0x1 & 0x2 = 0x0
. OTOH, "&&" is a boolean/logical "AND", meaning it treats any non-zero value as a TRUE, so 0x1 && 0x1 = TRUE
(which is generally represented as -1, ie, all ones [or maybe it's represented as 1 in C++, I forget]), while 0x1 && 0x2 = TRUE
as well.
In addition, "&&" is short-circuiting, meaning that if the first operand is FALSE, the second won't be evaluated. So, while FALSE & null_pointer->booleanField ==> null pointer exception
, FALSE && null_pointer->booleanField = FALSE
.
There may be a slight performance advantage in using bitwise operations in some cases, but generally you should use the double forms when evaluating boolean values, so that your code is independent of the precise representation of boolean TRUE and FALSE.
Upvotes: 8
Reputation: 71525
The standard guarantees that false
converts to zero and true
converts to one as integers:
4.7 Integral conversions
...
If the destination type is bool, see 4.12. If the source type is bool, the value false is converted to zero and the value true is converted to one.
So the effect in the example you give is guaranteed to be the same and is 100% portable.
For the case you give, any decent compiler is likely to generate identical (optimal) code.
However, for Boolean expressions expr1
and expr2
, it is not true in general that expr1 && expr2
is the same as expr1 & expr2
because &&
performs "short-circuit" evaluation. That is, if expr1
evaluates to false
, expr2
will not even be evaluated. This can affect performance (if expr2
is complicated) and behavior (if expr2
has side-effects). (But note that the &
form can actually be faster if it avoids a conditional branch... Toying with this sort of thing for performance reasons is almost always a bad idea.)
So, for the specific example you give, where you load the values into local variables and then operate on them, the behavior is identical and the performance is very likely to be.
In my opinion, unless you are specifically relying on the "short-circuit" behavior, you should choose the formulation that most clearly expresses your intention. So use &&
for logical AND and &
for bit-twiddling AND, and any experienced C++ programmer will find your code easy to follow.
Upvotes: 49
Reputation: 35477
When using logical and &&
, the right-hand expression will not be evaluated if the left-hand expression is false.
A lot of C/C++/C# code relies on this, as in: if (p != null && p->Foo())
.
For your example I would use case2 (logical and). Only use bitwise when dealing with bit flags, etc.
However, if foo() and bar() only return bool (0, 1) then case1 and case2 are the same.
Upvotes: 17
Reputation: 39807
Algorithmically there's no difference, however use of && allows you to "short circuit" the check. That is, to decide case2, if val1 is false then the compiled code has no reason to check the value of val2 in order to determine the answer, where case1 requires the actual AND to take place.
Realistically, a good compiler will recognize this and produce the same code... it comes down to how good your compiler is.
Upvotes: 4