Self and super, Objective-cself in objective-C

Source: Internet
Author: User

Self and super, Objective-cself in objective-C

1. People with object-oriented knowledge know that self is equivalent to this, and super is equivalent to calling the parent class method.

2. self is a hidden parameter of the class, pointing to the class of the method currently called, and another hidden parameter is _ cmd, representing the selector of the current class method.

Super is not a hidden parameter. It is just a "compiler indicator". It points to the same message recipient as self, that is,

[Self class] = [super class].

The difference is that super tells the compiler that when calling a method, the method of the parent class should be called, rather than the method of the current class.

In short, when using self to call a method, it will start from the method list of the current class. If not, it will be found from the parent class; when using super, find the method from the method list of the parent class, and then call this method.

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.