#include <iostream>
#include <exception>
using std::cout;
using std::endl;
class test
{
public:
test()
{
cout<<"constructor called"<<endl;
}
~test()
{
cout<<"destructor called"<<endl;
}
void fun(int x)
{
throw x;
}
};
int main()
{
try
{
static test k;
k.fun(3);
}
catch(int k)
{
cout<<"exception handler"<<endl;
}
}
当抛出异常时,然后在堆栈展开过程中,我认为只有本地对象被破坏,而不是静态或堆对象。如果这是真的,我不确定为什么要调用类(测试)析构函数?谢谢。