Summary review of C + + class design------destructor

Source: Internet
Author: User

After you create an object with a constructor, the program keeps track of the object until it expires. After the object expires, the program calls the destructor to complete the cleanup of the object.

Several features of the destructor:

1. There can be only one destructor, and if there is no explicit definition, the compiler will automatically generate a default destructor;

2. Destructors cannot be overloaded;

When the destructor is called:

1. If you create a static storage class object, the destructor will be called automatically at the end of the program;

2. If you are creating an automatic storage class object, the destructor will be called automatically when the program executes the code block;

3 If the object is created through new, it will reside in the stack memory free of storage, when using delete is called;

Summary review of C + + class design------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.