The function of virtual destructor

Source: Internet
Author: User

1#include <iostream>2 using namespacestd;3 classP4 {5  Public:6 P () {}7     Virtual~p () {cout<<"called the destructor of the base class! "<<Endl;}8     Virtual voidShow ()9     {Tencout<<"called the output function of the P class"<<Endl; One     } A }; -  - classQ: PublicP the { -  Public: - Q () {} -~q () {cout<<"a destructor for a derived class was called! "<<Endl;} +         voidShow () -     { +cout<<"called the output function of the Q class"<<Endl; A     } at }; - voidCallshow (P *obj) - { -Obj->Show (); - } - voidMainvoid) in { -P *s=NewQ; to Callshow (s); + delete s; -System"Pause"); the}

Remove the base class show () in front of virtual, running the result:

Plus the base class show () in front of virtual, run the result:

Remove the virtual in front of the base class destructor and run the result:

The results can be clearly concluded by running the result:

When not defined as virtual, which class's function is called with the pointer (P *s) of which class, when virtual is added, the
Object (new Q), the function that calls which class. Concepts and usage are simple, but more important techniques.

The function of virtual destructor

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.