C + + type compatibility

Source: Internet
Author: User

#include <iostream>using namespacestd;classcfather{ Public:    voidDisplay ()Const{cout<<"cfather::d isplay ()"<<Endl;}};classCSon: Publiccfather{ Public:    voidDisplay ()Const{cout<<"CSon::d isplay ()"<<Endl;}};classCgrandson: Publiccson{ Public:    voidDisplay ()Const{cout<<"Cgrandson::d isplay ()"<<Endl;}};voidShow (Cfather *ptr) {ptr-display ();}voidShowson (CSon *ptr) {ptr-display ();}intMain () {Cfather father;    CSon Son;    Cgrandson grandson; Show (&father); Show (&son); Show (&grandson); Showson (&grandson);    GetChar (); return 0;}

Output Result:

Type compatibility principle: You can assign the address of a derived class object to a base class

Conclusion: But through this pointer to the base class type, only the members inherited from the base class can be accessed.

Effect: When a base class object occurs, the derived class only plays the role of the base class when overridden by a derived class object.

change the code below to access the data members:
#include <iostream>using namespacestd;classcfather{ Public: Cfather (): ITest ( -){}//Constructor member initialization    voidDisplay ()Const{cout<<"cfather::d isplay ()"<<itest<<endl;}//contains itest    intiTest;};classCSon: Publiccfather{ Public:    voidDisplay ()Const{cout<<"CSon::d isplay ()"<<itest<<endl;}////Includes ITest};classCgrandson: Publiccson{ Public:    voidDisplay ()Const{cout<<"Cgrandson::d isplay ()"<<itest<<endl;}////Includes ITest};voidShow (Cfather *ptr) {ptr-display ();}voidShowson (CSon *ptr) {ptr-display ();}intMain () {Cfather father;    CSon Son;    Cgrandson grandson; Show (&father);//ParentShow (&son);//ChildShow (&grandson);//SunShowson (&grandson);//ChildGetChar (); return 0;}

Results:

C + + type compatibility

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.