12
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 函数中?

4

1 回答 1

21

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

您不能抑制在派生类构造函数中构造基类或成员期间引发的异常,因为这会导致构造的派生对象的基类或成员构造失败。

这个 GOTW 是相关的:http ://www.gotw.ca/gotw/066.htm

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

如果控制到达构造函数或析构函数的函数尝试块的处理程序的末尾,则重新抛出当前处理的异常。[...]

于 2012-07-20T07:46:15.200 回答