Self and super in the Objective-c

Source: Internet
Author: User

1. An object-oriented person knows that self equals this,super equivalent to calling a method of the parent class

2.self is a hidden parameter of the class, pointing to the class that is currently calling the method, and another hidden parameter is _cmd, which represents the selector of the current class method.

Super is not a hidden parameter, it is just a "compiler indicator", and self points to the same message receiver, which means that

[Self Class]=[super class].

The difference is that super tells the compiler that when a method is called, it calls the method of the parent class, not the class.

In summary, when the method is called with self, it is searched from the list of methods in the current class, and if not, from the parent class, and when super is used, the method is called from the list of methods in the parent class.

Self and super in the Objective-c

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.