写了一个类,简化是如下
class A{
int data;
public:
A(int data){
cout<<"无参数构造函数,data="<<data<<"\n";
this->data=data;
}
A(const A &other){
cout<<"复制构造函数,data="<<data<<"\n";
data=other.data;
}
~A(){
cout<<"data="<<data<<"的对象死了!\n";
}
A&operator=(const A&other){
if(this==&other)
return;
data=other.data;
cout<<"赋值\n";
}
}
int main(){
A a1(1);
A a2=a1;
A a3(3);
a3=a2;
return 0;
}
运行一下,会很神奇的发现,a3,a2都可以正常被弄死,可是a1很神奇的消失了。这个对象的析构函数没有被调用?!这是什么原因?? |