- 论坛徽章:
- 0
|
#include <iostream>
using namespace std;
class A
{
public:
void s_print(){
cout<<"error--A"<<endl;
}
};
class B
{
public:
void s_print(){
cout<<"error--B"<<endl;
}
};
class C
{
public:
void s_print(){
cout<<"error--C"<<endl;
}
};
void f( )throw (A,B);
void f( )throw(A,B)
{
throw A();
throw B();
throw C();
}
int main() {
try
{
f();
}
catch(A& a)
{
a.s_print();
}
catch (B& b)
{
b.s_print();
}
catch (C& c)
{
c.s_print();
}
return 0;
} |
问题一:void f( )throw(A,B),已经说明f()只能抛出两个异常A和B,为啥在其函数实现体中,抛出C,g++没有任何报错,连警告也没有?
问题二:void f( )throw(A,B){//代码}等价于如下代码
void f()
try{
//代码
}
catch(A) {throw;}
catch(B) {throw;}
catch(...){
std::unexpected();
} |
在main中,捕捉A()后,异常被重新抛出,为何后面的B()和C(),捕捉不到?这里的重新throw怎么理解? |
|