Super and this

Source: Internet
Author: User

If a child class declares a member variable with the same name as a member variable of the parent class, the member variable of the parent class is called hidden (hiding).

If a child class declares a member method with the same name as a parent class member method, the member method of the parent class is called overridden (overriding).

The keyword this and super are respectively used to indicate a member variable or member method of the same name in the subclass and parent class.

You can use the keyword this and super to specify the variable you want to use when the member variables of the parent class, the member variables of the subclass, and the local variables used by the class method have the same name, or if they have the same name.

class a{    int x;     A member variable is declared in Class A x}class b extends a{    //class B inherits Class A and also inherits the member variable x of Class A.     int x;            // In class B, you declare a member variable x        void m () {      The   int x;        //method M also declares its own local variable x        super.x=2;    //  super modifies the x    of its class parent Class A.     this.x=1;     //  this  modifies the x  of the Class B in which it is located       x=100;        //    Here x is the local variable x     of the method M itself;}} 

Super Keyword Reference blog http://www.cnblogs.com/xdp-gacl/p/3635948.html

Super and this

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.