你可以尝试一下。下面的程序编译并运行顺利。构造函数中变量ex
的地址与catch块中的临时变量e
的地址不同。但您可能会注意到,行B中ex
的值通过引用传递给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对象的析构函数?
答案 0 :(得分:7)
throw
表达式在离开本地范围之前将抛出的对象复制到安全的位置。该语言没有准确说明它的存储位置,只是这必须以某种方式工作(详细信息留给实现)。