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 does it mean to rewrite, reload and hide C++ respectively?

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

Share

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

Many novices are not very clear about what it means to rewrite, reload and hide C++. In order to help you solve this problem, the following editor will explain it in detail. People with this need can come and learn. I hope you can get something.

Rewrite

Definition of rewriting: rewriting occurs in the inheritance relationship between the base class and the derived class, and the base class member function defined as a virtual function is redefined and implemented by the derived class. At the same time, the method of the base class is hidden (that is, when the derived class calls the override method, the derived class redefines the method instead of the base class method). For example:

# include using std::cout;using std::endl;class Base {public: Base () {}; ~ Base () {}; virtual void fun () {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