Possible Duplicate:
Double Negation in C++ code
Let's say:
bool var = !!true;
It will assign "true" to the variable. Seems useless, but I was looking at Visual Studio's definition of "assert", and it is:
#define assert(_Expression) (void)( (!!(_Expression)) || (_wassert(_CRT_WIDE(#_Expression), _CRT_WIDE(__FILE__), __LINE__), 0) )
Why does it negate the "_Expression" twice?
I wonder that they want to force the "!" operator to be called (in the case it is overloaded), but that doesn't seem to be a good reason.


bool. But once upon a time we had to use integer types to store booleans in C, and this was a useful way to avoid values other than1or0. – Mike Seymour Jan 17 '12 at 18:56!!exprrather thanbool(expr)is to avoid microsoft's own stupid warning C4800. The!=0trick doesn't work in generic contexts. – ybungalobill Jan 17 '12 at 19:09