I just started reading the Objective-c tutorials, and there is a section on sending a message to nil.
What does this mean? I can't seem to follow it.
|
I just started reading the Objective-c tutorials, and there is a section on sending a message to nil. What does this mean? I can't seem to follow it.
| ||||
feedback
|
|
You can send any message to nil. Nothing happens. What exactly is it you don't understand in those docs? | |||||||||||||||||
feedback
|
|
The special treatment of
And you can be assured that nothing will happen. Now, why is this important? In Objective-C, sending a message to an object means telling that object to do something, or asking that object for some information. Some examples:
Line 1 sends To determine which method to invoke, the runtime system reads information from the address of the object in question ( If the runtime system did not treat | |||
|
feedback
|
| |||
feedback
|
|
It does what you would expect: nothing. | |||
feedback
|
|
The great thing about nil messaging compared to other languages like C# is that you can write code that performs multiple method calls without having to test for nil at each step.
If you go through several steps to get to In C# you would have had to explicitly check if each object is nil, set up exception handling around that block of code, or just hope none of the intermediate objects are ever nil. One other thing to keep in mind (that I just learned myself!) is that 10.5 changed this behavior-- it used to be that it was only safe for integers and pointers to objects, not structs or floating point values. You might see some additional error checking when you're looking at other code because of this. | |||
|
feedback
|