vote up 2 vote down star

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

flag

3 Answers

vote up 9 vote down check

"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|flag
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 at 16:38
The type of context: in that method is "void *". "nil" is not a "void *", but NULL is. – Paul Tomblin Feb 17 at 16:47
So is it correct to deduce from this discussion that we cannot pass an object pointer (aka, something that can be typed as nil) when we pass this message to the object implementing NSKeyValueObserving? Because object pointers cannot be of type void * ? – erikprice Feb 17 at 17:27
To be honest with you, I don't know if you can cast an id into a void*. – Paul Tomblin Feb 17 at 17:57
You can. void * is any pointer. Nonetheless, you are absolutely right that NULL is the correct constant there. – Peter Hosey Feb 17 at 18:16
show 6 more comments
vote up 12 vote down

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|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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