你可以试一试。下面的程序编译并运行顺利。ex
构造函数中变量的地址e
与 catch 块中的临时变量不同。但是您可能会注意到ex
B 行中的值是通过e
引用传递给的。谁能解释发生了什么?
#include<cstring>
#include<iostream>
using std::string;
using std::endl;
using std::cout;
class ThrowException;
ThrowException* TE_ptr;
class ThrowException{
private:
string msg;
int b;
public:
ThrowException(string m="Unknown exception",int factor=0) throw(string,const char*);
~ThrowException(){ cout<<"destructor get called."<<endl;}
friend std::ostream& operator<<(std::ostream& os,const ThrowException&TE);
};
ThrowException::ThrowException(string m, int f) throw(string,const char*):msg(m),b(f){
cout<<"msg="<<msg<<'\n'<<"b="<<b<<endl;
TE_ptr=this;
if(b==1){
string ex("b=1 not allowed.");
cout<<"The address of e in constructor is "<<&ex<<endl; //A
throw ex;
}
}
std::ostream&operator<<(std::ostream&os, const ThrowException &TE){
os<<TE.msg<<'\n'<<TE.b<<endl;
}
int main(){
try{
ThrowException a("There's nothing wrong.", 1);
}catch(string &e){ //B
cout<<"The address of e in first catch block is "<<&e<<endl; //C
cout<<"The content resided in the momery block pointed to by TE_ptr is "<<*TE_ptr<<endl;
}
}
另一个我想问的问题是 ThrowException 对象的析构函数什么时候被调用?