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 function of virtual destructor

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

Share

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

What is the role of the virtual destructor, many novices are not very clear about this, in order to help you solve this problem, the following editor will explain for you in detail, people with this need can come to learn, I hope you can gain something.

If the destructor of a base class is described as a virtual destructor, the destructor in its derived class is also a virtual destructor, regardless of whether it is described with the keyword virtual or not.

The purpose of the virtual destructor is to ensure that the destructor is executed correctly when an object is deleted using the delete operator. Because after setting the virtual destructor, the destructor can be selected by dynamic binding.

Here is an example of using a virtual destructor.

# include

Class A

{

Public:

Virtual ~ A () {cout < < "A Called () Called.\ n";}

}

Class B: public A

{

Public:

B (int I) {buf = new char [I];}

Virtual ~ B ()

{

Delete [] buf

Cout < < "Bazaar Called.\ n"

}

Private:

Char * buf

}

Void fun (A * a)

{

Delete a

}

Void main ()

{

A * a = new B (15)

Fun (a)

}

Execute the program to output the following results:

Called () Borel.

A () Called.

If the destructor in class A does not use a virtual function, the output is as follows:

A () Called.

When it is stated that the destructor of the base class is a virtual function, the fun (a) function is called to execute the following statement:

Delete a

Because the destructor is automatically called when the delete statement is executed, dynamic binding is used to call the destructor of its base class, so the above results are output.

When it is not stated that the destructor of the base class is a virtual function, delete implies a call to the destructor, so it produces

A () Called.

As a result.

Class A {public: virtual ~ A () {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