Inheritance and dynamic memory allocation--you need to define explicit destructors, copy constructors, and assignment operators for inheriting classes

Source: Internet
Author: User

When new is used by derived classes, you must define explicit destructors, copy constructors, and assignment operators for derivation.
(This assumes that the Hasdma class inherits from the Basedma class)
An explicit destructor:

// takes care of BASEDMA stuff {    delete  [] label;} HASDMA::~hasdma () {    delete  [] style;}

Copy constructor:

BASEDMA::BASEDMA (const BASEDMA & rs) {    newchar1];    std::strcpy (label, Rs.label);     = rs.rating;} HASDMA::HASDMA (const HASDMA & HS)            : BASEDMA (HS) {    newChar  1];    std::strcpy (style, Hs.style);}

Assignment operators:

BASEDMA & BASEDMA::operator=(ConstBASEDMA &RS) {    if( This= = &rs)return* This; Delete[] label; Label=New Char[Std::strlen (Rs.label) +1];    std::strcpy (label, Rs.label); Rating=rs.rating; return* This;} HASDMA& HASDMA::operator=(ConstHASDMA &HS) {    if( This= = &HS)return* This; BASEDMA::operator= (HS);//Copy Base portion    Delete[] style;//prepare for new stylestyle =New Char[Std::strlen (Hs.style) +1];    stdllstrcpy (style, hs.style); return* This;}

Inheritance and dynamic memory allocation--you need to define explicit destructors, copy constructors, and assignment operators for inheriting classes

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.