Java--subclasses use super to call the method of the parent class A,a called Method B, and the subclass also override method B, then super. A () finally called the B method of the subclass

Source: Internet
Author: User

 Public classsuperclass{ Public voidPrintA () {System.out.print ("Superclass-printa");    PRINTB (); }     Public voidPrintb () {System.out.print ("Superclass-printb"); }} Public classChildClassextendssuperclass{ Public voidPrintA () {System.out.print ("Childclass-printa"); Super. PrintA (); }     Public voidPrintb () {System.out.print ("Childclass-printb"); }     Public Static voidMain (string[] args) {ChildClass ChildClass=NewChildClass ();    Childclass.printa (); }}
View Code

Subclasses call the method of the parent class through Super.printa (), and PRINTB () is called in the parent class's PrintA (), in which case the PRINTB () method of the subclass is called.

Related issues:

Http://zhidao.baidu.com/link?url=l3eoUB_0shzLHSumCutjTi57YMtq3eGluGkqyb_kpc9pcJv4PnyVOTnfCclBWcpOVp34vZFlFPZyyAknBCDSGq

Http://www.tuicool.com/articles/QBBBfe7

Java--subclasses use super to call the method of the parent class A,a called Method B, and the subclass also override method B, then super. A () finally called the B method of the subclass

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.