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 are the conflicts between structure and deconstruction and between father and son in C++ inheritance?

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

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

This article is to share with you about the construction and deconstruction of C++ inheritance and the conflict between father and son. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

one。 Construction and deconstruction in inheritance

Q: how do I initialize parent class members? What is the relationship between the parent constructor and the subclass constructor?

a. Construction of subclass objects

1. A subclass can define a constructor

two。 Subclass constructor-the inherited member process must be initialized (initialized directly by initialization list or assignment, and initialized by calling the parent class constructor)

b. How the parent constructor is called in the subclass

1. Default call-applies to no-parameter constructors and constructors that use default parameters

two。 Display calls-calls are made through initialization lists and apply to all parent class constructors

Code example

# include # include using namespace std;class Parent {public: Parent () {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