Reason
The operators &&= and ||= are not available on C / C++ / Java because :
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!
x ||= yroughly 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)yunless already set". I'm not anxious to add another operator for that, it seems a bit feeble. Just writeif (!x) x = (bool)y. But then, I don't really useboolvariables enough to want extra operators that are only really useful with that one type. – Steve Jessop Mar 21 '10 at 21:26