vote up 1 vote down star

Duplicate

Do you use NULL or 0 for pointers in C++?

When dealing with NULL pointers one can do this

if(ptr != NULL){ ... }

or this

if(ptr != 0){ ... }

Are there reasons to prefer one over the other in C++?

flag

61% accept rate

closed as exact duplicate by Bill the Lizard, sth, Jonathan Leffler, JaredPar, Can Berk Güder Mar 30 at 3:10

5 Answers

vote up 10 vote down

Use NULL because it indicates semantically what you mean.

Remember, the point of programming isn't to tell the computer what to do. The point is to tell other humans what you're telling the computer to do.

link|flag
AMEN! Code is primarily meant to be read by other humans. – Dan Mar 30 at 2:40
"The point is to tell other humans what you're telling the computer to do" -- lovely! but I prefer to use 0, it's a well known C++ idiom and shouldn't confuse anyone! – hasen j Mar 30 at 3:17
NULL is meaningful only if you came to C++ from a C background. – Ferruccio Mar 30 at 3:44
vote up 3 vote down

This same question has already been answered on StackOverflow: Do you use NULL or 0 (zero) for pointers in C++?

link|flag
vote up 2 vote down

It doesn't matter strictly: either will work. So will:

if (ptr) { ... }

Checking explicitly for NULL demonstrates intent of the if and for that reason, I think it aides maintainability to check using:

if (ptr != NULL) { ... }

link|flag
Why was this downvoted? I see nothing wrong with it. – dehmann Mar 30 at 2:54
vote up 2 vote down

if( ptr != NULL ) reads better than if(ptr != 0). So, while you may save 3 keystrokes with the latter, you will help your coworkers maintain their sanity while reading your code if you use the former.

link|flag
vote up 2 vote down

It doesnt much matter. Every professional programmer will know what ptr = 0 and if( !ptr ) means, and it is perfectly compliant with the Standard. So do what you will, but whatever you do, just do the same thing all the time.

link|flag

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