Is if ( c ) the same as if ( c == 0 ) in C++?
|
|
|
|
|
No, |
||||||||||
|
|
|
I'll break from the pack on this one... " |
||||||||||||
|
|
|
It's more like Of course, |
||
|
|
|
|
If c is a pointer or a numeric value,
is equivalent to
If c is a boolean (type bool [only C++]), (edit: or a user-defined type with the overload of the operator bool())
is equivalent to
If c is nor a pointer or a numeric value neither a boolean,
will not compile. |
||||||
|
|
|
yes they are the same if you change == 0 to != 0 |
||
|
|
This is only true for numeric values. if c is class, there must be an operator overloaded which does conversion boolean, such as in here:
|
||
|
|
|
|
If
is not quite the same as
The latter is a straightforward check of |
||||||||||
|

cpoints to a valid object (or function) of its type. Note that in all cases, 0 is always the same and always means the same. It just can be converted to many different things. – Johannes Schaub - litb Sep 25 at 23:30