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