In the following code, what is the benefit of using (!!p) instead of (p != NULL)?
AClass *p = getInstanceOfAClass();
if( !!p )
// do something
else
// do something without having valid pointer
|
|
In the following code, what is the benefit of using
|
|||
|
|
That's a matter of style, in fact they are equivalent. See this very similar question for discussion. IMO comparing against null pointer is clearer. |
||
|
|
|
|
It is pretty much the same, although I consider the |
||
|
|
I thing GMan’s original comment should be the accepted answer:
The point is: nothing is wrong with it, and this should be the preferred way. First off, The same goes for Finally, For pointers, we get the same for free. So use it. /EDIT: About clarity: sharptooth writes that
I claim that this is objectively wrong: |
||||||||||
|
|
|
As far as I can see, it's just a shorter way to convert it into a boolean value. It applies the ! twice, though, whereas |
||
|
|
|
|
They are the same, but I recommend to use
It is more readable. |
||||||||||||||||||||
|
|
|
There is no difference in the given example. However the assumption that this applies to all cases is incorrect. a = not not b is not the same as a = b, as far as integer types are concerned. In C, While for the example code given, This technique is known as the double-bang idiom, and this guy provides some good justifications. |
||||||
|
|
|
Do !!NOT use double negation. A simple argument is that since C++ is a limited English subset and english just does not have a double negation then english speakers will have a lot of difficulty to parse what is going on. |
||||||||||||
|
if (p). – GMan Oct 22 at 8:15!por!=have special behaviors. – Kobi Oct 22 at 8:22Object* operator+(Object const*, Object const*)is a valid signature.... – Matthieu M. Oct 22 at 19:02