c++深拷贝和重载=

本文介绍了C++中类的深拷贝和浅拷贝的概念,并展示了`CastC`类如何实现深拷贝构造函数和重载赋值运算符。在`testCopy`函数中,通过创建`CastC`对象并进行拷贝操作,展示了深拷贝和浅拷贝的区别,以及在内存管理中的应用。
摘要由CSDN通过智能技术生成

class CastC {
public:
    int i; 
    int len;
    int* p;
    CastC() {
        this->i=0;
        this->len = 0;
        this->p = NULL;
    }
    CastC(int i, int len) {
        this->i = i;
        this->len = len;
        this->p = new int[len];
    }
    CastC(const CastC& c) {//深拷贝
        this->i = c.i;
        this->len = c.len;
        this->p = new int[c.len];
        for (int i = 0; i < len; i++) {
            this->p[i] = c.p[i];
        }
    }
    CastC& operator=(const CastC& c) {//重写=操作符
        if (this->p != NULL) {
            delete p;
            p = NULL;
            this->i = 0;
            this->len = 0;
        }
        this->i = c.i;
        this->len = c.len;
        this->p = new int[c.len];
        for (int i = 0; i < len; i++) {
            this->p[i] = c.p[i];
        }
        return *this;
    }
};
void testCopy() {
    CastC p1(1, 10);
    p1.p[1] = 10;
    CastC p2;
    p2 = p1;
    p2 = p1;
    cout << p2.p[1];
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值