Is there a "very bad thing" that can happen &&= and ||= were used as syntactic sugar for bool foo = foo && bar and bool foo = foo || bar?

link|improve this question

3  
See this other question: stackoverflow.com/questions/2324549/… That one's about Java, but sharing the C lineage, the same arguments mostly apply. – jamesdlin Mar 21 '10 at 19:38
Basically, just c++ doesn't have it b/c they didn't put it in - languages like Ruby has it. boo... – Kache Mar 21 '10 at 19:54
1  
But in Ruby, isn't x ||= y roughly equivalent to C++ x = x ? x : y; for any type? In other words, "set to y if not already set". That's considerably more useful than C or C++ x ||= y, which (barring operator overloading) would do "set x to (bool)y unless already set". I'm not anxious to add another operator for that, it seems a bit feeble. Just write if (!x) x = (bool)y. But then, I don't really use bool variables enough to want extra operators that are only really useful with that one type. – Steve Jessop Mar 21 '10 at 21:26
feedback

3 Answers

up vote 5 down vote accepted

A bool may only be true or false in C++. As such, using &= and |= is perfectly safe (even though I don’t particularly like the notation). True, they will perform bit operations rather than logical operations (and as such, they won’t short-circuit) but these bit operations follow a well-defined mapping, which is effectively equivalent to the logical operations, as long as both operands are indeed of type bool.

Contrary to what other people have said here, a bool in C++ must never have a different value such as 2. When assigning that value to a bool, it will be converted to true as per the standard.

The only way to get an invalid value into a bool is by using reinterpret_cast on pointers:

int i = 2;
bool b = *reinterpret_cast<bool*>(&i);
b |= true; // MAY yield 3 (but doesn’t on my PC!)

But since this code results in undefined behaviour anyway, we may safely ignore this potential problem in conforming C++ code.

link|improve this answer
1  
But the && and || operators will work on anything that converts to bool, not just bool. – dan04 Mar 21 '10 at 20:08
2  
They don't do the same thing, even on bools. || and && shortcut, i.e. the second argument isn't operand if the first operand is true (resp. false for &&). |, &, |= and &= always evaluate both operands. – nikie Mar 21 '10 at 20:09
1  
@nikie: I didn’t say that they did the same. And do you really want to short-circuit an assignment such as a &&= b? I think that’s asking for trouble. – Konrad Rudolph Mar 21 '10 at 20:15
In fact, if you try to do a switch on the above b, it is likely you end up in default: even if you have both true and false branches. – Johannes Schaub - litb Mar 21 '10 at 23:11
@Johannes: The UB case? Yes, that’s possible. But I’ve tested this and on my PC (OS X 10.5, GCC 4.4.2) it actually doesn’t – which kind of surprised me, too. – Konrad Rudolph Mar 22 '10 at 7:38
feedback

&& and & have different semantics: && will not evaluate the second operand if the first operand is false. i.e. something like

flag = (ptr != NULL) && (ptr->member > 3);

is safe, but

flag = (ptr != NULL) & (ptr->member > 3);

is not, although both operands are of type bool.

The same is true for &= and |=:

flag = CheckFileExists();
flag = flag && CheckFileReadable();
flag = flag && CheckFileContents();

will behave differently than:

flag = CheckFileExists();
flag &= CheckFileReadable();
flag &= CheckFileContents();
link|improve this answer
1  
all the more reason to have &&= in my opinion. =P – Kache Mar 21 '10 at 20:19
+1 Brilliant idea. – Pavel Radzivilovsky Mar 21 '10 at 20:20
feedback

Reason

The operators &&= and ||= are not available on C / C++ / Java because :

  • error prone
  • useless

Example for &&=

If C or C++ or Java allowed &&= operator, then that code:

bool isOk = true; //becomes false when at least a function returns false
isOK &&= f1();
isOK &&= f2(); //we think f2() is called whatever the f1() returned value

would be equivalent to:

bool isOk = true;
if (isOK) isOk = f1();
if (isOK) isOk = f2(); //f2() is not called when f1() returns false

And this is not what we want.

Therefore, it's just sufficient to use &=:

bool isOk = true;
isOK &= f1();
isOK &= f2(); //f2() is called whatever the f1() returned value

Moreover, compilers should optimize easily the above code than:

bool isOk = true;
if (!f1())  isOk = false;
if (!f2())  isOk = false;  //f2() is called whatever the f1() returned value

However, are the results of operators && and & the same when applied on boolean values?

Let's check using the following C++ code:

#include <iostream>

void test (int testnumber, bool a, bool b)
{
   std::cout << testnumber <<") a="<< a <<" and b="<< b <<"\n"
                "a && b = "<< (a && b)  <<"\n"
                "a &  b = "<< (a &  b)  <<"\n"
                "======================"  "\n";
}

int main ()
{
    test (1, true,  true);
    test (2, true,  false);
    test (3, false, false);
    test (4, false, true);
}

Output:

1) a=1 and b=1
a && b = 1
a &  b = 1
======================
2) a=1 and b=0
a && b = 0
a &  b = 0
======================
3) a=0 and b=0
a && b = 0
a &  b = 0
======================
4) a=0 and b=1
a && b = 0
a &  b = 0
======================

Therefore YES we can replace && by & for boolean values ;-)

So &= is a very good replacement of the missing &&= operator!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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