C++类与对象--返回栈对象

C++类与对象--返回栈对象

示例1

#include <iostream>
using namespace std;
class A
{
public:
    A(){
        cout<<this<<" constructor"<<endl;
    }
    A(const A &other)
    {
        cout<<this<<" cp contructor from "<<&other<<endl;
    }
    ~A()
    {
        cout<<this<<" destructor"<<endl;
    }
};
A foo(A& a)
{
    return a;
}
int main()
{
    A a;
    foo(a);
    cout<<1233<<endl;
    return 0;
}

输出结果
在main的栈上事先开辟了一个临时空间,把这个空间的地址隐式的转到foo函数栈上。然后,把 a 内的东西,拷贝到临时空间中。 所以发生一次构造,一次拷贝, 两次析构。临时空间在“foo(a);”语句结束后就掉用析构器。所以在1233输出前析构提示。

示例2

#include <iostream>
using namespace std;
class A
{
public:
    A(){
        cout<<this<<" constructor"<<endl;
    }
    A(const A &other)
    {
        cout<<this<<" cp contructor from "<<&other<<endl;
    }
    ~A()
    {
        cout<<this<<" destructor"<<endl;
    }
};
A foo(A& a)
{
    return a;
}
int main()
{
    A a;
    A t=foo(a);
    cout<<1233<<endl;
    return 0;
}

输出结果
此时 main 函数中产生的临时空间,由 t 来取而代之。所以也发生一次构造,一次拷贝,两次析构。但是 t 的析构是在main结束后,所以析构提示在1233后。

示例3

#include <iostream>
using namespace std;
class A
{
public:
    A(){
        cout<<this<<" constructor"<<endl;
    }
    A(const A &other)
    {
        cout<<this<<" cp contructor from "<<&other<<endl;
    }
    A & operator=(const A &other)
    {
        cout<<this<<" operator = "<<&other<<endl;
    }
    ~A()
    {
        cout<<this<<" destructor"<<endl;
    }
};
A foo(A& a)
{
    return a;
}
int main()
{
    A a;
    A t;
    t=foo(a);
    cout<<1233<<endl;
    return 0;
}

输出结果
此时 main 栈上通过拷贝构造产生了中间变量,中间变量向 t 发生了赋值。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值