vote up 2 vote down star

OK, I have some C++ code in a header that is declared like this:

void StreamOut(FxStream *stream,const FxChar *name = nil);

and I get: error:

'nil' was not declared in this scope

nil is a pascal thing, correct?

Should I be using NULL?

I thought they were both the same or at least Zero, no?

flag

60% accept rate
1  
While they both may be zero, that doesn't necessarily mean that NULL = nil. It depends on lots of factors, such as how typedef's were done, how declarations/definitions were made, etc. – Ken White Nov 5 at 21:10

6 Answers

vote up 10 vote down check

In C++ you need to use NULL, 0, or in some brand new compilers nullptr. The use of NULL vs. 0 can be a bit of a debate in some circles but IMHO, NULL is the more popular use over 0.

link|flag
To clarify for others #DEFINE NULL 0 and null_ptr != NULL null_ptr is used only to signify a pointer with no value, 0 is a valid pointer value but barring embedded systems it's probably an invalid one. – joshperry Nov 5 at 21:11
It's nullptr - channel9 has some nice video about it: channel9.msdn.com/shows/Going+Deep/… – Johannes Schaub - litb Nov 5 at 21:14
4  
@joshperry, sorry but you have not clarified, but confused it. 0 is not a pointer value, but it's an integer value - not barring any system. It can be converted to a pointer value. See stackoverflow.com/questions/423823/… – Johannes Schaub - litb Nov 5 at 21:20
A 0 in a pointer context is a null pointer, by definition. c-faq.com/null/index.html – Carl Norum Nov 5 at 22:10
1  
@Carl Norum, you are using a different definition of "is". You are saying "A is B" iff "A can be converted to be B". That definition makes sense when passing arguments to functions. But to most people (or so would i assume, at least), is means "is one and the same" when taken out of context. So these people then think 0 is both an integer and a pointer, and would think if you do ptr + 0 (surely this is a "pointer context") you could add a pointer and a null pointer, etc... It's only best to keep it clear and say "0 is converted to a null pointer when needed", instead. – Johannes Schaub - litb Nov 5 at 22:27
show 4 more comments
vote up 4 vote down

nil does not exist in standard C++. Use NULL instead.

link|flag
C++ doesn't have null in all lower case – JaredPar Nov 5 at 21:08
1  
type-o corrected – Marcin Nov 5 at 21:08
vote up 3 vote down

Yes. It's NULL in C and C++, while it's nil in Objective-C.

Each language has its own identifier for no object. In C the standard library, NULL is a typedef of ((void *)0). In C++ the standard library, NULL is a typedef of 0 or 0L.

However IMHO, you should never use 0 in place of NULL, as it helps the readability of the code, just like having constant variables in your code: without using NULL, the value 0 is used for null pointers as well as base index value in loops as well as counts/sizes for empty lists, it makes it harder to know which one is which. Also, it's easier to grep for and such.

link|flag
Never use 0 as NULL? – GMan Nov 5 at 21:13
2  
Never use 0. Why? – AndreyT Nov 5 at 21:16
@GMan, @AndreyT, just clarified the post. – notnoop Nov 5 at 21:30
1  
IMO - 0 is an integer value, NULL implies a pointer. Using 0 makes me suspect the programmer forgot what they were doing or were just sloppy. Also sizeof(NULL) should be the same as sizeof(void*). – NVRAM Nov 5 at 21:40
2  
@onebyone: NULL is an integer in C++, but not necessarily specifically int. NULL can be defined as OL, which would mean that sizeof(NULL) == sizeof(long) in that case. – AndreyT Nov 5 at 21:48
show 8 more comments
vote up 1 vote down

0 is the recommended and common style for C++

link|flag
2  
Recommended by whom? – NVRAM Nov 5 at 21:34
1  
Recommended by Stroustrup: www2.research.att.com/~bs/bs_faq2.html#null/… – Steve 'onebyone' Jessop Nov 5 at 21:47
2  
It is not "recommended" by Stroustrup. It is more like "personally preferred" by Stroustrup. – AndreyT Nov 5 at 22:13
I would not even say using 0 is common. I have seen code with it in but common is stretching it. NULL is common though. – Martin York Nov 5 at 23:37
"If you have to name the null pointer, call it nullptr" sounds to me like a recommendation not to use NULL (granted, a null pointer is not the same thing at all as a null pointer constant, but I think it's clear he's talking about what literal should be used to generate null pointers). In fact it's a direct order, but given that he's not the boss of me I choose to interpret it as advice ;-) – Steve 'onebyone' Jessop Nov 5 at 23:38
show 1 more comment
vote up 1 vote down

just add at the beginning

#define null '\0'

or whatever you want instead of null and stick with what you prefer. The null concept in C++ is just related to a pointer pointing to nothing (0x0)..

Mind that every compiler may have its own definition of null, nil, NULL, whatever.. but in the end it is still 0.

Probably in the source you are looking at there is a

#define nil '\0'

somewhere in a header file..

link|flag
1  
You've defined a char constant, useful for handling null-terminated strings. The OP code expects nil to be a pointer. – NVRAM Nov 5 at 21:37
Actually I always used it in my "common.h" header file and compiler never complained, execution neither. But maybe with -Wall it will say something about that.. – Jack Nov 5 at 22:00
1  
Actually, defining NULL as \0 is a perfectly valid thing to do in C and C++. I would be quite surprised to see an implementation that does this, but nevertheless \0 is a valid way to define NULL. – AndreyT Nov 5 at 22:04
Proof for C++ in 2.13.2/4, which says "The escape \ooo ... [is] taken to specify the value of the desired character". So \0 has value zero and is a valid value for NULL. I'm not sure about false for C++ though: Its value is ... false and not zero, and to become zero, you need a promotion to int or conversion to another integer type. But this would require both an integer and a pointer conversion - so it would become illegal. But nontheless, i've tried various implementations, and they all accept false – Johannes Schaub - litb Nov 5 at 22:14
vote up 0 vote down

I saw some comments on why not to use 0. Generally people don't like magic numbers, or numbers with meaning behind them. Give them a name. I would rather see ANSWER_TO_THE_ULTIMATE_QUESTION over 42 in code.

As for nil, I know Obj-C using nil as well. I would hate to think that someone went against the very popular convention (or at least what I remember) of NULL, which I thought was in a standard library header somewhere. I haven't done C++ in awhile though.

link|flag
1  
Personally, I think 0 is so incredibly magic that it's pointless to pretend you mean some special kind of 0. Sure, you can say INTEGER_THAT_CONVERTS_TO_NULL_POINTER (which is what NULL is), or you can say DEFAULT_INITIAL_VALUE_OF_A_GLOBAL_INT_VARIABLE, or INDEX_OF_FIRST_OBJECT_IN_AN_ARRAY. But everyone knows you mean 0, and translates to 0 in their heads. I used to carefully use NULL, and I don't object to it, but I tend just to stick with 0. Same goes for '\0', although I rate a ASCII_NUL macro as being at least as useful as NULL. – Steve 'onebyone' Jessop Nov 5 at 21:52

Your Answer

Get an OpenID
or

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