NULL vs nil in Objective-C - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T14:54:26Zhttp://stackoverflow.com/feeds/question/557582http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/557582/null-vs-nil-in-objective-c5NULL vs nil in Objective-Cerikprice2009-02-17T16:14:44Z2009-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#55760713Answer by Marc Charbonneau for NULL vs nil in Objective-CMarc Charbonneau2009-02-17T16:21:19Z2009-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#55761312Answer by Paul Tomblin for NULL vs nil in Objective-CPaul Tomblin2009-02-17T16:23:49Z2009-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#16807263Answer by Andrew for NULL vs nil in Objective-CAndrew2009-11-05T13:53:52Z2009-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>