Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the inheritance and derivation of C++

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces "what is the inheritance and derivation of C++". In daily operation, I believe many people have doubts about the inheritance and derivation of C++. The editor consulted all kinds of materials and sorted out simple and easy-to-use methods of operation. I hope it will be helpful to answer the doubts about "what is the inheritance and derivation of C++"! Next, please follow the editor to study!

/ / parent base class class parent {}; / subclass derived class / / public inheritance class soon1:public parent {public: protected:}; / / protect inheritance class son2:protected parent {public: protected:}; / / private inheritance class son3:private parent {public: protected:} / / inheritance and derivation / / inheritance: no new attributes and behaviors are generated in subclasses / / derivation: new attributes and behaviors in derived classes generate class subclass names: inheritance mode parent class name {}; / / inheritance mode is the essence of permission qualifier inheritance and permission problems

The essence of inheritance: there is one of the data and member subclasses of the parent class

Permission problem: inheritance will only enhance the display of permissions for parent class properties in subclasses

Publicprotectedprivatepublic inheritance publicprotected cannot be directly accessed protected inheritance protectedprotected cannot be directly accessed private inheritance privateprotected cannot be directly accessed # include#includeusing namespace std;class parent {public: void print () {cout

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report