Sending a message to nil? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T16:44:47Z http://stackoverflow.com/feeds/question/156395 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/156395/sending-a-message-to-nil 12 Sending a message to nil? Ryan Delucchi 2008-10-01T06:00:47Z 2009-03-14T21:41:19Z <p>As a Java developer whom is pouring over Apple's Objective-C 2.0 documentation: I am in a state of wonderment as to what <em>sending a message to nil</em> means - let alone how it is actually useful. Taking an excerpt from the documentation:</p> <blockquote> <p>There are several patterns in Cocoa that take advantage of this fact. The value returned from a message to nil may also be valid:</p> <ul> <li>If the method returns an object, any pointer type, any integer scalar of size less than or equal to sizeof(void*), a float, a double, a long double, or a long long, then a message sent to nil returns 0.</li> <li>If the method returns a struct, as defined by the Mac OS X ABI Function Call Guide to be returned in registers, then a message sent to nil returns 0.0 for every field in the data structure. Other struct data types will not be filled with zeros.</li> <li>If the method returns anything other than the aforementioned value types the return value of a message sent to nil is undefined.</li> </ul> </blockquote> <p>Has Java rendered my brain incapable of grokking the explanation above? Or is there something that I am missing that would make this as clear as glass?</p> <p>Note: Yes, I do get the idea of messages/receivers in Objective-C, I am simply confused about a receiver that happens to be nil.</p> http://stackoverflow.com/questions/156395/sending-a-message-to-nil/156415#156415 7 Answer by Rich for Sending a message to nil? Rich 2008-10-01T06:12:11Z 2008-10-01T06:12:11Z <p>What it means is that the runtime doesn't produce an error when objc_msgSend is called on the nil pointer; instead it returns some (often useful) value. Messages that might have a side effect do nothing.</p> <p>It's useful because most of the default values are more appropriate than an error. For example,</p> <p>[someNullNSArrayReference count] => 0</p> <p>I.e., nil appears to be the empty array. Hiding a nil NSView reference does nothing. Handy, eh?</p> http://stackoverflow.com/questions/156395/sending-a-message-to-nil/156463#156463 17 Answer by Michael Buckley for Sending a message to nil? Michael Buckley 2008-10-01T06:32:29Z 2008-10-01T17:34:13Z <p>Well, I think it can be described using a very contrived example. Let's say you have a method in Java which prints out all of the elements in an ArrayList:</p> <pre><code>void foo(ArrayList list) { for(int i = 0; i &lt; list.size(); ++i){ System.out.println(list.get(i).toString()); } } </code></pre> <p>Now, if you call that method like so: someObject.foo(NULL); you're going to probably get a NullPointerException when it tries to access list, in this case in the call to list.size(); Now, you'd probably never call someObject.foo(NULL) with the NULL value like that. However, you may have gotten your ArrayList from a method which returns NULL if it runs into some error generating the ArrayList like someObject.foo(otherObject.getArrayList());</p> <p>Of course, you'll also have problems if you do something like this:</p> <pre><code>ArrayList list = NULL; list.size(); </code></pre> <p>Now, in Objective-C, we have the equivalent method:</p> <pre><code>- (void)foo:(NSArray*)anArray { int i; for(i = 0; i &lt; [anArray count]; ++i){ NSLog(@"%@", [[anArray objectAtIndex:i] stringValue]; } } </code></pre> <p>Now, if we have the following code:</p> <pre><code>[someObject foo:nil]; </code></pre> <p>we have the same situation in which Java will produce a NullPointerException. The nil object will be accessed first at [anArray count] However, instead of throwing a NullPointerException, Objective-C will simply return 0 in accordance with the rules above, so the loop will not run. However, if we set the loop to run a set number of times, then we're first sending a message to anArray at [anArray objectAtIndex:i]; This will also return 0, but since objectAtIndex: returns a pointer, and a pointer to 0 is nil/NULL, NSLog will be passed nil each time through the loop. (Although NSLog is a function and not a method, it prints out (null) if passed a nil NSString.</p> <p>In some cases it's nicer to have a NullPointerException, since you can tell right away that something is wrong with the program, but unless you catch the exception, the program will crash. (In C, trying to dereference NULL in this way causes the program to crash.) In Objective-C, it instead just causes possibly incorrect run-time behavior. However, if you have a method that doesn't break if it returns 0/nil/NULL/a zeroed struct, then this saves you from having to check to make sure the object or parameters are nil.</p> http://stackoverflow.com/questions/156395/sending-a-message-to-nil/156498#156498 4 Answer by Kendall Helmstetter Gelner for Sending a message to nil? Kendall Helmstetter Gelner 2008-10-01T06:53:01Z 2008-10-01T06:53:01Z <p>It means often not having to check for nil objects everywhere for safety - particularly:</p> <pre><code>[someVariable release]; </code></pre> <p>or, as noted, various count and length methods all return 0 when you've got a nil value, so you do not have to add extra checks for nil all over:</p> <pre><code>if ( [myString length] &gt; 0 ) </code></pre> <p>or this:</p> <pre><code>return [myArray count]; // say for number of rows in a table </code></pre> http://stackoverflow.com/questions/156395/sending-a-message-to-nil/160432#160432 3 Answer by benzado for Sending a message to nil? benzado 2008-10-02T00:56:57Z 2008-10-02T00:56:57Z <p>Don't think about "the receiver being nil"; I agree, that <em>is</em> pretty weird. If you're sending a message to nil, there is no receiver. You're just sending a message to nothing.</p> <p>How to deal with that is a philosophical difference between Java and Objective-C: in Java, that's an error; in Objective-C, it is a no-op.</p> http://stackoverflow.com/questions/156395/sending-a-message-to-nil/195944#195944 4 Answer by mmalc for Sending a message to nil? mmalc 2008-10-12T20:02:55Z 2008-10-12T20:02:55Z <p>In the quotation from the documentation, there are two separate concepts -- perhaps it might be better if the documentation made that more clear:</p> <blockquote> <p>There are several patterns in Cocoa that take advantage of this fact.</p> <p>The value returned from a message to nil may also be valid:</p> </blockquote> <p>The former is probably more relevant here: typically being able to send messages to <code>nil</code> makes code more straightforward -- you don't have to check for null values everywhere. The canonical example is probably the accessor method:</p> <pre><code>- (void)setValue:(MyClass *)newValue { if (value != newValue) { [value release]; value = [newValue retain]; } } </code></pre> <p>If sending messages to <code>nil</code> were not valid, this method would be more complex -- you'd have to have two additional checks to ensure <code>value</code> and <code>newValue</code> are not <code>nil</code> before sending them messages.</p> <p>The latter point (that values returned from a message to <code>nil</code> are also typically valid), though, adds a multiplier effect to the former. For example:</p> <pre><code>if ([myArray count] &gt; 0) { // do something... } </code></pre> <p>This code again doesn't require a check for <code>nil</code> values, and flows naturally...</p> <p>All this said, the additional flexibility that being able to send messages to <code>nil</code> does come at some cost. There is the possibility that you will at some stage write code that fails in a peculiar way because you didn't take into account the possibility that a value might be <code>nil</code>.</p> http://stackoverflow.com/questions/156395/sending-a-message-to-nil/276943#276943 1 Answer by Peter Hosey for Sending a message to nil? Peter Hosey 2008-11-10T02:44:22Z 2008-11-10T02:44:22Z <p>A message to <code>nil</code> does nothing and returns <code>nil</code>, <code>Nil</code>, <code>NULL</code>, <code>0</code>, or <code>0.0</code>.</p> http://stackoverflow.com/questions/156395/sending-a-message-to-nil/310215#310215 3 Answer by Joe McMahon for Sending a message to nil? Joe McMahon 2008-11-21T21:15:08Z 2008-11-21T21:15:08Z <p>All of the other posts are correct, but maybe it's the concept that's the thing important here.</p> <p>In Objective-C method calls, any object reference that can accept a selector is a valid target for that selector. </p> <p>This saves a LOT of "is the target object of type X?" code - as long as the receiving object implements the selector, it makes <em>absolutely no difference</em> what class it is! <code>nil</code> is an NSObject that accepts any selector - it just doesn't <em>do</em> anything. This eliminates a lot of "check for nil, don't send the message if true" code as well. (The "if it accepts it, it implements it" concept is also what allows you to create <em>protocols</em>, which are sorta kinda like Java interfaces: a declaration that if a class implements the stated methods, then it conforms to the protocol.)</p> <p>The reason for this is to eliminate monkey code that doesn't do anything except keep the compiler happy. Yes, you get the overhead of one more method call, but you save <em>programmer time</em>, which is a far more expensive resource than CPU time.</p> http://stackoverflow.com/questions/156395/sending-a-message-to-nil/646789#646789 2 Answer by Nikita Zhuk for Sending a message to nil? Nikita Zhuk 2009-03-14T21:41:19Z 2009-03-14T21:41:19Z <p>ObjC messages which are sent to nil and whose return values have size larger than sizeof(void*) produce undefined values on PowerPC processors. In addition to that, these messages cause undefined values to be returned in fields of structs whose size is larger than 8 bytes on Intel processors as well. Vincent Gable has described this nicely in his <a href="http://vgable.com/blog/2008/05/31/messages-to-nowhere/" rel="nofollow">blog post</a></p>