异常被捕获两次

时间:2012-07-20 07:43:34

标签: c++ exception constructor

class A{
    public:
        A() { throw string("exception A"); };
};

class B{
    A a;
    public:
        B() try : a() {} catch(string& s) { cout << &s << " " << s << endl; };
};

int main(){    
    try{
        B b;
    }catch(string& s){
        cout << &s << " " << s << endl;
    }
    return 0;
}

输出结果为:

0x32c88 exception A
0x32c88 exception A

由于异常已经在B的构造函数中捕获,为什么它仍然出现在main函数中?

1 个答案:

答案 0 :(得分:21)

当contol流到达构造函数的function-try-block的处理程序的末尾时,将自动重新抛出捕获的异常。

您无法抑制在派生类构造函数中构造基类或成员期间抛出的异常,因为这会导致构造的派生对象具有无法构造的基础或成员。

此GOTW相关:http://www.gotw.ca/gotw/066.htm

来自ISO / IEC 14882:2011 15.3 [except.handle] / 15:

  

如果控件到达构造函数或析构函数的 function-try-block 的处理程序的末尾,则重新抛出当前处理的异常。 [...]