can you explain me the self in the objective-C 2.0 ? when and where should i use? is it similar with this definition in java?
|
|
|||||||||
|
|
|
You use it if you want to perform an operation on the current instance of that class. For example, if you are writing an instance method on a class, and you want to call a method on that same instance to do something or retrieve some data, you would use
This is also often used for accessor methods on an instance (i.e. setters and getters) especially with setter methods, if they implement extra functionality rather than just setting the value of an instance variable, so that you do not have to repeat that code over and over when you want to set the value of that variable, for example:
One of the most common uses of
This invokes the superclass's (via |
|||
|
|
|
Yes, it's exactly the same as "this" in Java - it points to the "current" object. |
||
|
|
|
|
Another implied argument is Please be aware that you only get For more information, see the Using Hidden Arguments section of the Objective-C Runtime Programming guide. |
||
|
|
|
|
self is an object pointer to the current instances dispatch table. It is an implicit first argument to every member function of an object, and is assigned when that function is called. In functions like init, you need to be careful that when you call the super class init you reassign self to be the return value as the super class init may redefine what self points to. super is similar to self except it points to the superclass dispatch table. |
||
|
|
|
Two important notes:
Sadly, this makes class methods a bit harder to use, which is unfortunate because they are a valuable tool for encapsulation through information hiding. Just be careful. |
||
|
|
