cpp——类——赋值操作符函数

本文深入探讨了C++中的赋值操作符函数,包括合成赋值操作符函数及其const修饰,以及与复制构造函数的区别。强调了赋值操作符函数在实例对象赋值时的作用,并阐述了编译器如何在未显式定义时自动合成这些函数。
摘要由CSDN通过智能技术生成

概述

  • 赋值操作符函数模仿内置类型的赋值操作
  • 赋值操作符函数只是赋值操作符重载的一个特殊版本,其形参列表为[const] classname &,当实例对象赋值操作时调用

辅助类

class CAnimal
{
public:
    CAnimal() : mGroup(0)
    {
        cout << "CAnimal()" << endl;
    }
    
    CAnimal(int group) : mGroup(group)
    {
        cout << "CAnimal(" << group << ")" << endl;
    }
    
    CAnimal(const CAnimal &other) : mGroup(other.mGroup)
    {
        cout << "CAnimal(const CAnimal &other)" << endl;
    }
    
    ~CAnimal()
    {
        cout << "~CAnimal()" << endl;
    }
    
public:
    CAnimal& operator=(const CAnimal &other)
    {
        mGroup = other.mGroup;
        cout << "CAnimal operator=" << endl;
        return *this;
    }
    
private:
    int mGroup;
};

class CDog : public CAnimal
{
public:
    CDog() : mLoyal(10)
    {
        cout << "CDog()" << endl;
    }
    
    CDog(int loyal) : CAnimal(1), mLoyal(loyal)
    {
        cout << "CDog(" << loyal << ")" << endl;
    }
    
    CDog(const CDog &other) : CAnimal(other), mLoyal(other.mLoyal)
    {
        cout << "CDog(const CDog &other)" << endl;
    }
    
    ~CDog()
    {
        cout << "~CDog()" << endl;
    }
    
public:
    CDog& operator=(const CDog &other)
    {
        CAnimal::operator=(other);
        mLoyal = other.mLoyal;
        cout << "CDog operator=" << endl;
        return *this;
    }
    
private:
    int mLoyal;
};

class CCat : public CAnimal
{
public:
    CCat() : mCute(20)
    {
        cout << "CCat()" << endl;
    }
    
    CCat(int cute) : CAnimal(2), mCute(cute)
    {
        cout << "CCat(" << cute << ")" << endl;
    }
    
    CCat(const CCat &other) : CAnimal(other), mCute(other.mCute)
    {
        cout << "CCat(const CCat &other)" << endl;
    }
    
    ~CCat()
    {
        cout << "~CCat()" << endl;
    }
    
public:
    CCat& operator=(const CCat &other)
    {
        CAnimal::operator=(other);
        mCute = other.mCute;
        cout << "CCat operator=" << endl;
        return *this;
    }
   
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值