• 【C++】运算符重载 ⑪ ( 数组类 中 等号 = 运算符重载 | 函数原型 Array& operator=(Array& a) | 完整代码示例 )






    一、数组类 等号 = 运算符重载




    1、数组类回顾


    数组类 定义后 ,

    如果 想要 使用 一个已存在的数组类对象 为 另外一个已存在的数组类对象 赋值 ,

    就需要 重载 等号 = 运算符 ;


    重载 等号 = 运算符 , 需要满足如下条件 :

    • 赋值功能 : 基本赋值功能 ;
    • 深拷贝 : 拷贝赋值 需要是 深拷贝 ;
    • 返回引用类型 : 等号运算 是 右结合 的 , a = b = c 代码 , 先执行 b = c , 然后再执行 a = (b = c) , 可见 等号运算符 的返回值 也要是一个相同类型的对象 , 该对象必须是引用类型 , 否则返回的是一个匿名对象 ;

    2、等号 = 运算符重载


    使用 成员函数 实现 等号 = 运算符重载 :

    • 首先 , 写出函数名 , 函数名规则为 " operate " 后面跟上要重载的运算符 ,
      • 要对 Array a 对象 , 使用 = 运算符 , 使用时用法为 a = a1 ;
      • 函数名是 operate= ;
    operate=
    
    • 1
    • 然后 , 根据操作数 写出函数参数 , 参数一般都是 对象的引用 ;
      • 要对 Array a 对象 , 使用 = 运算符 , 使用时用法为 a = a1 ;
      • 左操作数 : 其中 左操作数 是 Array a , 这里通过 this 指针调用 , 不需要声明在参数中 ;
      • 右操作数 : 右操作数 是 Array a1 ; 该操作数需要声明在参数中 , 注意需要声明 引用类型 ;
      • 上述两个是对象类型 , 对象一般传入 指针 或 引用 , 这里传入引用类型 ;
    operator=(Array& a)
    
    • 1
    • 再后 , 根据业务完善返回值 , 返回值可以是 引用 / 指针 / 元素 ;
      • 等号运算 是 右结合 的 , a = b = c 代码 , 先执行 b = c , 然后再执行 a = (b = c) , 可见 等号运算符 的返回值 也要是一个相同类型的对象 , 该对象必须是引用类型 , 否则返回的是一个匿名对象 ;
    Array& operator=(Array& a)
    
    • 1
    • 最后 , 实现函数体 , 编写具体的运算符操作业务逻辑 ;
      • 先释放本身的内存空间 ;
      • 再根据右操作数 ( 参数 ) 数据重新进行内存分配 , 并赋值 ;
      • 最后 , 返回自身引用 ;
    // 等号 = 操作符重载
    Array& Array::operator=(Array& a)
    {
    	if (this->m_space != NULL)
    	{
    		// 释放 new int[m_length] 分配的内存 
    		delete[] this->m_space;
    		this->m_space = NULL;
    	}
    
    	// 设置数组长度
    	this->m_length = a.m_length;
    
    	// 创建数组
    	this->m_space = new int[m_length];
    
    	// 为数组赋值
    	for (int i = 0; i < m_length; i++)
    	{
    		this->m_space[i] = a.m_space[i];
    	}
    
    	cout << " 调用 等号 = 操作符重载 函数" << endl;
    
    	// 返回是引用类型
    	// 返回引用就是返回本身
    	// 将 this 指针解引用, 即可获取数组本身
    	return *this;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29




    二、完整代码示例




    1、Array.h 数组头文件


    #pragma once
    
    #include "iostream"
    using namespace std;
    
    class Array
    {
    public:
    	// 无参构造函数
    	Array();
    
    	// 有参构造函数
    	Array(int len);
    
    	// 拷贝构造函数
    	Array(const Array& array);
    
    	// 析构函数
    	~Array();
    
    public:
    	// 设置数组数据
    	void setData(int index, int value);
    
    	// 获取数组数据
    	int getData(int index);
    
    	// 获取数组长度
    	int length();
    
    public:
    	// 数组下标 [] 操作符重载
    	int& operator[](int i);
    
    	// 等号 = 操作符重载
    	Array& operator=(Array& a);
    
    private:
    	// 数组长度
    	int m_length;
    
    	// 指向数组数据内存 的指针
    	int* m_space;
    };
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44

    2、Array.cpp 数组实现类


    #include "Array.h"
    
    // 无参构造函数
    Array::Array()
    {
    	// 设置数组长度
    	m_length = 10;
    
    	// 为数组在堆内存中分配内存
    	m_space = new int[m_length];
    
    	cout << " 调用无参构造函数 " << endl;
    }
    
    // 有参构造函数
    Array::Array(int len)
    {
    	// 设置数组长度
    	m_length = len;
    
    	// 为数组在堆内存中分配内存
    	m_space = new int[m_length];
    
    	cout << " 调用有参构造函数 " << endl;
    }
    
    // 拷贝构造函数
    // 这是一个深拷贝 拷贝构造函数
    Array::Array(const Array& array)
    {
    	// 设置数组长度
    	m_length = array.m_length;
    
    	// 创建数组
    	m_space = new int[m_length];
    
    	// 为数组赋值
    	for (int i = 0; i < m_length; i++)
    	{
    		m_space[i] = array.m_space[i];
    	}
    
    	cout << " 调用拷贝构造函数 " << endl;
    }
    
    // 析构函数
    Array::~Array()
    {
    	if (m_space != NULL)
    	{
    		// 释放 new int[m_length] 分配的内存 
    		delete[] m_space;
    		m_space = NULL;
    	}
    
    	cout << " 调用析构函数 " << endl;
    }
    
    // 设置数组数据
    void Array::setData(int index, int value)
    {
    	m_space[index] = value;
    }
    
    // 获取数组数据
    int Array::getData(int index)
    {
    	return m_space[index];
    }
    
    // 获取数组长度
    int Array::length()
    {
    	return m_length;
    }
    
    // 数组下标 [] 操作符重载
    int& Array::operator[](int i)
    {
    	return m_space[i];
    }
    
    // 等号 = 操作符重载
    Array& Array::operator=(Array& a)
    {
    	if (this->m_space != NULL)
    	{
    		// 释放 new int[m_length] 分配的内存 
    		delete[] this->m_space;
    		this->m_space = NULL;
    	}
    
    	// 设置数组长度
    	this->m_length = a.m_length;
    
    	// 创建数组
    	this->m_space = new int[m_length];
    
    	// 为数组赋值
    	for (int i = 0; i < m_length; i++)
    	{
    		this->m_space[i] = a.m_space[i];
    	}
    
    	cout << " 调用 等号 = 操作符重载 函数" << endl;
    
    	// 返回是引用类型
    	// 返回引用就是返回本身
    	// 将 this 指针解引用, 即可获取数组本身
    	return *this;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111

    3、Test.cpp 测试类


    #include "iostream"
    using namespace std;
    
    #include "Array.h"
    
    int main() {
    
    	Array array(3);
    
    	// 设置 array 数组值
    	for (int i = 0; i < array.length(); i++)
    	{
    		//array.setData(i, i + 5);
    		array[i] = i + 5;
    	}
    
    	// 打印 array 数组值
    	for (int i = 0; i < array.length(); i++)
    	{
    		//cout << array.getData(i) << endl;
    		cout << array[i] << endl;
    	}
    
    	// 使用拷贝构造函数 赋值
    	Array array2(3);
    	Array array3(3);
    
    	// 调用重载的等号运算符
    	array3 = array2 = array;
    
    	// 打印 array2 数组值
    	for (int i = 0; i < array3.length(); i++)
    	{
    		//cout << array3.getData(i) << endl;
    		cout << array3[i] << endl;
    	}
    
    
    	// 控制台暂停 , 按任意键继续向后执行
    	system("pause");
    
    	return 0;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43

    4、执行结果


    执行结果 :

     调用有参构造函数
    5
    6
    7
     调用有参构造函数
     调用有参构造函数
     调用 等号 = 操作符重载 函数
     调用 等号 = 操作符重载 函数
    5
    6
    7
    Press any key to continue . . .
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    在这里插入图片描述

  • 相关阅读:
    原始html和vue中使用3dmol js展示分子模型,pdb文件
    concat() 、concat_ws()和group_concat()
    安装torchtext遇到的坑及解决办法
    AI首席架构师8-AICA-高翔 《深入理解和实践飞桨2.0》
    无需字体支持的符号大全(2)
    基于STM32单片机的温湿度检测报警器(数码管)(Proteus仿真+程序)
    计算机考研|一个408统考的王炸复习顺序
    JAVA客户端使用账号密码调用influxdb2报错:{“code“:“unauthorized“,“message“:“Unauthorized“}
    vue-3d-model属性介绍
    DP讨论——适配器模式
  • 原文地址:https://blog.csdn.net/han1202012/article/details/133666833