我曾经认为在C ++中,如果构造函数引发异常,则不会调用此“部分构造”类的析构函数。
但是似乎在C ++ 11中不再是这样:我使用g ++编译了以下代码,并将其打印X destructor
到控制台。为什么是这样?
#include <exception>
#include <iostream>
#include <stdexcept>
using namespace std;
class X
{
public:
X() : X(10)
{
throw runtime_error("Exception thrown in X::X()");
}
X(int a)
{
cout << "X::X(" << a << ")" << endl;
}
~X()
{
cout << "X destructor" << endl;
}
};
int main()
{
try
{
X x;
}
catch(const exception& e)
{
cerr << "*** ERROR: " << e.what() << endl;
}
}
输出量
Standard out:
X::X(10)
X destructor
Standard error:
*** ERROR: Exception thrown in X::X()