最佳答案
我曾经认为在 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()