#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;
}
}
當引發異常時,然後在堆棧展開過程中,我認爲只有本地對象被銷燬,而不是靜態或堆對象。如果這是真的,我不知道爲什麼類(測試)析構函數被調用?謝謝。當引發異常時,是靜態對象還是本地對象?
你的意思是「...靜態對象或堆對象」 –