Exceptions in constructor and destructor in C ++

Source: Internet
Author: User

1. Exceptions in the constructor

You can throw an exception in the constructor. When a constructor throws an exception, it indicates that an object is not fully constructed by the constructor, so the Destructor is not called. At this time, only automatic variables are released, and resources that are dynamically allocated cannot be automatically released. In this case, you can use smart pointers to manage dynamically allocated resources.

2. Exceptions in destructor

Although exceptions can be thrown in the destructor, do not throw exceptions in the destructor. The reason is that when the Destructor throws an exception, if there is another exception that has not been processed, the system will call the terminate function. Therefore, if the Destructor has a try module, place all statements that may encounter exceptions in the try module. When an exception is caught, do not throw an exception in the catch, but swallowed up the exception.

 

 

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.