NULL vs nil in Objective-C - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T14:54:26Z http://stackoverflow.com/feeds/question/557582 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/557582/null-vs-nil-in-objective-c 5 NULL vs nil in Objective-C erikprice 2009-02-17T16:14:44Z 2009-11-05T13:53:52Z <p>In <code>observeValueForKeyPath:ofObject:change:context:</code> - why do the docs use <code>NULL</code> instead of <code>nil</code> when not specifying a context pointer?</p> http://stackoverflow.com/questions/557582/null-vs-nil-in-objective-c/557607#557607 13 Answer by Marc Charbonneau for NULL vs nil in Objective-C Marc Charbonneau 2009-02-17T16:21:19Z 2009-02-17T16:21:19Z <p>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 *).</p> http://stackoverflow.com/questions/557582/null-vs-nil-in-objective-c/557613#557613 12 Answer by Paul Tomblin for NULL vs nil in Objective-C Paul Tomblin 2009-02-17T16:23:49Z 2009-02-17T16:49:49Z <p>"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.</p> <p>Look at the declaration of that method:</p> <pre><code>-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context </code></pre> <p>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").</p> http://stackoverflow.com/questions/557582/null-vs-nil-in-objective-c/1680726#1680726 3 Answer by Andrew for NULL vs nil in Objective-C Andrew 2009-11-05T13:53:52Z 2009-11-05T13:53:52Z <p>They're technically the same thing and differ only in style:</p> <ul> <li>Objective-C style says <code>nil</code> is what to use for the <code>id</code> type (and pointers to objects).</li> <li>C style says that <code>NULL</code> is what you use for <code>void *</code>.</li> <li>C++ style typically says that you should just use <code>0</code>.</li> </ul> <p>I typically use the variant that matches the language where the type is <em>declared</em>.</p>