selfis one of two implicit parameters for each method. This is a pointer to an object, and initially any object received a message to call the executable method. When the method in question is an instance method, it selfwill be an instance of the class in which the method is defined, or one of its subclasses. In the case of a class method, it selfwill be an object of the class.
source
share