up vote 49 down vote favorite
18
share [g+] share [fb]

In observeValueForKeyPath:ofObject:change:context: - why do the docs use NULL instead of nil when not specifying a context pointer?

link|improve this question

feedback

3 Answers

up vote 64 down vote accepted

"nil" should only be used in place of an "id", what we Java and C++ programmers would think of as a pointer to an object. Use NULL for non-object pointers.

Look at the declaration of that method:

-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object
change:(NSDictionary *)change context:(void *)context

context is a "void *" (ie a C-style pointer), so you'd definitely use NULL (which is sometimes declared as "(void *)0") rather than nil (which is of type "id").

link|improve this answer
But since the type of context in observeValueForKeyPath:ofObject:change:context: is void *, doesn't that mean that the data passed as the context could be an object pointer? I would think that to be a common case. That's why I'm confused as to why the docs always use NULL instead of nil. – erikprice Feb 17 '09 at 16:38
The type of context: in that method is "void *". "nil" is not a "void *", but NULL is. – Paul Tomblin Feb 17 '09 at 16:47
1  
You can. void * is any pointer. Nonetheless, you are absolutely right that NULL is the correct constant there. – Peter Hosey Feb 17 '09 at 18:16
1  
They said void *. NULL is for void * and nil is for id. Therefore, you pass NULL. If you pass nil, you are lying to your reader, who will think this method takes an id. – Peter Hosey Feb 17 '09 at 18:50
6  
Or to think of it another way, NULL is a broader type, and nil is a subset of NULL. In general, use the broadest type you can get away with (ie in Java, write your method to expect a Collection instead of a Vector, unless you need something specific from Vector) – Paul Tomblin Feb 17 '09 at 18:56
show 6 more comments
feedback

They're technically the same thing (0), but nil is usually used for an Objective-C object type, while NULL is used for c-style pointers (void *).

link|improve this answer
2  
Also, NULL is differently defined than nil. nil is defined as (id)0. NULL isn't. – WTP'-- Aug 18 '11 at 15:40
@WTP if you read through MacTypes.h, it declares #define nil NULL – jbat100 Nov 27 '11 at 13:57
feedback

They're technically the same thing and differ only in style:

  • Objective-C style says nil is what to use for the id type (and pointers to objects).
  • C style says that NULL is what you use for void *.
  • C++ style typically says that you should just use 0.

I typically use the variant that matches the language where the type is declared.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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