详细介绍运算符重载函数,清晰明了

祝各位六一快乐~

前言

1.为什么要进行运算符重载?

C++中预定义的运算符的操作对象只能是基本数据类型。但实际上,对于许多用户自定义类型(例如类),也需要类似的运算操作。这时就必须在C++中重新定义这些运算符赋予已有运算符新的功能,使它能够用于特定类型执行特定的操作

C++为了增强代码的可读性引入了运算符重载,运算符重载是具有特殊函数名的函数,也具有其
返回值类型函数名字以及参数列表,其返回值类型与参数列表与普通的函数类似

2.什么是运算符重载 ?

运算符重载是通过创建运算符函数实现的,运算符函数定义了重载的运算符将要进行的操作。

1.基本知识

操作符重载,本质上就是函数重载(详细了解可点击阅读函数重载),它大大丰富了已有操作符的含义,方便使用

运算符重载格式如下:

1.函数名:operator+需要重载的运算符符号

2.函数原型:返回值类型 operator+符号(形参参数列表)

3.必须有一个类类型的参数

4.     ::    ?:    .      .*       sizeof  这五个运算符不能重载

5.用于内置类型的运算符,其含义不能改变,例如:内置的整型+,不能改变其含义

6.作为类成员函数重载时,其形参看起来比操作数数目少1,因为成员函数的第一个参数为隐
藏的this

7.不能通过连接其他符号来创建新的操作符:比如operator@

8.运算符重载时必须遵循的原则

  • 重载运算符含义必须清楚;
  • 重载运算符不能有二义性。

9.算符函数重载的两种形式

  • 重载为类的成员函数
  • 重载为类的非成员函数 (非成员函数通常是友元函数)。

注:可以把一个运算符作为一个非成员、非友元函数重载。但是,这样的运算符函数访问类的私有和保护成员时,必须使用类的公有接口中提供的设置数据和读取数据的函数,调用这些函数时会降低性能。可以内联这些函数以提高性能。

补充知识:友元函数

一、友元函数的作用

  • 提供数据共享接口:为不同类之间的成员函数,以及类的成员函数与一般函数之间提供了数据共享的接口。
  • 支持类间紧密协作:当两个或多个类之间需要进行紧密的协作和交互时,友元函数允许直接访问私有成员,减少系统开销,提高效率。
  • 支持运算符重载:在某些情况下,可能需要重载运算符并操作两个不同对象之间的私有数据。此时可以将相应操作符重载函数声明为两个类的友元。

二、友元函数的特点(重点)

  • 与类的成员函数具有一样的权限:友元函数可以访问类的所有成员,包括私有成员。
  • 不属于任何类:友元函数是定义在类外的普通函数,不属于任何类。
  • 没有this指针:由于友元函数不是类的成员函数,因此它没有this指针。

三、友元函数的用法

  • 声明方式:友元函数需要在类中进行声明,前面需要加上friend关键字,可以放在公有部分也可以放在私有部分。
  • 多类友元:一个函数可以是多个类的友元函数,只需要在个各类中分别进行声明。
  • 调用方式:友元函数的调用与一般函数的调用方式和原理一致。

四、注意事项

  • 破坏封装性:友元函数破坏了类的封装性和类数据的隐藏性,因此在使用时需要谨慎考虑。
  • 避免过度使用:原则上应尽量少使用或不使用友元,除非确实能显著提高开发效率。

    2.经典运算符重载的代码示例(主要以日期类为例)

2.1operator+,operator-,operator+=,operator-=

以复数类为例

代码

#include<iostream>
using namespace std;

//负数类
class complex
{
public:
    complex(double r = 0, double i = 0) :_real(r), _imag(i) {}
    complex operator +(const complex& c); //+运算符
    complex operator -(const complex& c);//-运算符
    complex& operator +=(const complex& c); //+=运算符
    complex& operator -=(const complex& c);//-=运算符
    complex& operator - ();//求负运算符
    void Print()const
    {
        cout << "(" << _real << "," << _imag << ")" << endl;
    }
private:
    double _real;//实部
    double _imag;//虚部
};
complex complex::operator +(const complex& c) //+运算符
{
    complex tmp;
    tmp._real = _real + c._real;
    tmp._imag = _imag + c._imag;
    return tmp;
}
complex complex::operator -(const complex& c) //-运算符
{
    complex tmp;
    tmp._real = _real - c._real;
    tmp._imag = _imag - c._imag;
    return tmp;
}
complex& complex::operator +=(const complex& c) //+=运算符
{
    _real += c._real;
    _imag += c._imag;
    return *this;
}
complex& complex::operator -=(const complex& c) //-=运算符
{
    _real -= c._real;
    _imag -= c._imag;
    return *this;
}
complex& complex::operator - ()//求负运算符
{
    _real = -_real;
    _imag = -_imag;
    return *this;
}
int main()
{
    complex c1(3.5, 5), c2(6, 8), c3, c4, c5;
    c3 = c1 + c2;
    c3.Print();

    c4 = c2 - c1;
    c4.Print();

    c1 += c2;
    c1.Print();
    c2.Print();
  
    c2 -= c1;
    c1.Print();
    c2.Print();
 
    c5 = -c2;
    c5.Print();
    
    return 0;
}

2.2前置operator++(--),后置operator++(--)

前置++和后置++的函数名都是operator++(没错,又是函数重载),他们的区别在于前置++没有形参,后置++有一个形参int,但是我们在实际上使用时并不需要给后置++的形参int传实参,int只是为了区分前置++和后置++的标识。

前置--和后置--也是同样用形参int来区分。

以日期类为例

#include<iostream>
using namespace std;
class Date
{
public:
	Date(int year = 0, int month = 0, int day = 0);
	// 拷贝构造函数
	// d2(d1)
	Date(const Date& d);

	// 获取某年某月的天数
	int GetMonthDay(int year, int month);

	// 日期+=天数
	Date& operator+=(int day);

	// 日期+天数
	Date operator+(int day)const;

	// 日期-=天数
	Date& operator-=(int day);

	// 日期-天数
	Date operator-(int day)const;

	// 前置++
	Date& operator++();
	// 后置++
	Date operator++(int);
	// 后置--
	Date operator--(int);
	// 前置--
	Date& operator--();

	void print()const;
	// 析构函数(日期类无需清理资源,析构函数不必显示写)
	//void print();
	//~Date()
	//{
		//cout << "~Date()" << endl;
	//}
private:
	int _year, _month, _day;
};

Date::Date(int year, int month, int day)
{
	_year = year;
	_month = month;
	_day = day;
}
Date::Date(const Date& d)
{
	_year = d._year;
	_month = d._month;
	_day = d._day;
}
int Date::GetMonthDay(int year, int month)
{
	static int MonthDay[13] = { -1,31,28,31,30,31,30,31,31,30,31,30,31 };
	if (month == 2 && (year % 4 == 0 && year % 100 != 0 || year % 400 == 0))
	{
		return 29;
	}
	else
	{
		return MonthDay[month];
	}
}
void Date::print()const
{
	cout << _year << "年" << _month << "月" << _day << "日" << endl;
}
Date& Date::operator+=(int day)
{
	if (day < 0)
	{
		return *this -= -day;
	}
	_day += day;
	while (_day > GetMonthDay(_year, _month))
	{

		_day -= GetMonthDay(_year, _month);
		_month++;
		if (_month == 13)
		{
			_month = 1;
			_year++;
		}
	}
	return *this;
}
Date Date::operator+(int day)const
{
	Date tmp = *this;
	tmp += day;
	return tmp;
}
Date& Date::operator-=(int day)
{
	if (day < 0)
	{
		return *this += -day;
	}
	_day -= day;

	while (_day <= 0)
	{
		_month--;
		if (_month == 0)
		{
			_year--;
			_month = 12;
		}
		_day += GetMonthDay(_year, _month);
	}
	return *this;
}
Date Date::operator-(int day)const
{
	Date tmp = *this;
	tmp -= day;
	return tmp;
}
void Test1()
{
	Date d1(2024, 4, 30);
	Date d2 = d1 + 3;
	d2.print();

	Date d3(2024, 12, 31);
	Date d5 = d3;
	d3 += 1;
	d3.print();
	d5 = d5 - 1;
	d5.print();

	d1 -= 30;
	d1.print();
	Date d4 = d1 - 3;
	d4.print();
}
// 前置++
Date& Date::operator++()
{
	//这里直接用刚刚实现的Date& Date::operator+=(int day)
	//只是++相当于day=1而已
	//减少了代码负担
	*this += 1;
	return *this;
}
// 后置++
Date Date::operator++(int)
{
	//这里直接用刚刚实现的Date& Date::operator+(int day)
	Date tmp = *this;
	*this += 1;
	return tmp;
}
// 前置--
Date& Date::operator--()
{
	*this -= 1;
	return *this;
}
// 后置--
Date Date::operator--(int)
{
	Date tmp = *this;
	*this -= 1;
	return tmp;
}
void Test2()
{
	Date d1(2024, 6, 1);
	Date d2(2023, 12, 31);
	Date d3 = d1--;
	Date d4 = d2++;
	d3.print();
	d4.print();
	Date d5 = --d3;
	Date d6 = ++d4;
	d5.print();
	d6.print();
}
int main()
{
	//Test1();//可以自行测试
	Test2();
}

2.3operator<,operator<=,operator==,operator!=,operator>=,operator>

只需要实现operator<,operator==,其他的运算符重载就能轻松实现了,下面我们一起看一下吧

#include<iostream>
using namespace std;
class Date
{
public:
	Date(int year = 0, int month = 0, int day = 0);
	Date(const Date& d);
	// 获取某年某月的天数
	int GetMonthDay(int year, int month);

	// >运算符重载
	bool operator>(const Date& d);
	// ==运算符重载
	bool operator==(const Date& d);
	// >=运算符重载
	bool operator >= (const Date& d);
	// <运算符重载
	bool operator < (const Date& d);
	// <=运算符重载
	bool operator <= (const Date& d);
	// !=运算符重载
	bool operator != (const Date& d);

	void print()const;

private:
	int _year, _month, _day;
};

Date::Date(int year, int month, int day)
{
	_year = year;
	_month = month;
	_day = day;
}
Date::Date(const Date& d)
{
	_year = d._year;
	_month = d._month;
	_day = d._day;
}
int Date::GetMonthDay(int year, int month)
{
	static int MonthDay[13] = { -1,31,28,31,30,31,30,31,31,30,31,30,31 };
	if (month == 2 && (year % 4 == 0 && year % 100 != 0 || year % 400 == 0))
	{
		return 29;
	}
	else
	{
		return MonthDay[month];
	}
}
void Date::print()const
{
	cout << _year << "年" << _month << "月" << _day << "日" << endl;
}


bool Date::operator < (const Date& d)
{
	if (_year < d._year)
	{
		return true;
	}
	else if (_year == d._year)
	{
		if (_month < d._month)
		{
			return true;
		}
		else if (_month == d._month)
		{
			if (_day < d._day)
			{
				return true;
			}
		}
	}
	return false;
}
bool Date::operator == (const Date& d)
{
	return _year == d._year
	&&_month == d._month
	&&_day == d._day;
}
bool Date::operator != (const Date& d)
{
	return !(*this == d);
}
bool Date::operator <= (const Date& d)
{
	return *this < d || *this == d;
}
bool Date::operator > (const Date& d)
{
	return !(*this <= d );
}
bool Date::operator >= (const Date& d)
{
	return !(*this < d);
}
int main()
{
	Date d1(2024, 3, 2), d2(2023, 5, 6);
	cout << (d1 == d2) << endl;
	cout << (d1 != d2) << endl;
	cout << (d1 <= d2) << endl;
	cout << (d1 >= d2) << endl;
	cout << (d1 < d2) << endl;
	cout << (d1 > d2) << endl;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/668692.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

摄影后期照片编辑工具:LrC2024 for Mac/win 中文激活版

LrC2024&#xff08;Lightroom Classic 2024&#xff09;是 Adobe 公司推出的一款专业级别的照片编辑和管理软件。它是 Lightroom Classic CC 的升级版&#xff0c;具有更多的功能和改进。 这款软件主要用于数字摄影师和摄影爱好者处理、编辑和管理他们的照片。它提供了一套强大…

锅炉智能制造工厂工业物联数字孪生平台,推进制造业数字化转型

在制造业快速发展的今天&#xff0c;数字化转型已经成为企业提升竞争力的关键途径。锅炉智能制造工厂工业物联数字孪生平台&#xff0c;作为一种创新的技术解决方案&#xff0c;正以其独特的优势&#xff0c;为制造业的数字化转型提供强大动力。锅炉智能制造工厂工业物联数字孪…

【网络研究观】-20240531

战争揭开美国武器优势的面纱 随着俄军在哈尔科夫地区稳步推进&#xff0c;乌克兰战争对美国国防机器而言是一场灾难&#xff0c;这一点越来越明显&#xff0c;这不仅是因为我们的援助未能挽救乌克兰的撤退和可能的失败。更重要的是&#xff0c;这场战争无情地暴露了我们国防体…

我用大模型校稿出书的经验心得

1. 第一本AI校稿的书 我的新书《云计算行业进阶指南》已经出版&#xff0c;本书使用了大模型进行AI校对书稿。 在本文稿发布前&#xff0c;我问了好几个AI&#xff0c;AI都说“还没有出版书籍宣称自己使用了AI校稿”&#xff0c;因此我可以说&#xff1a; 本书是第一本公开宣称…

Docker搭建Redis主从 + Redis哨兵模式(一主一从俩哨兵)

我这里是搭建一主一从&#xff0c;俩哨兵&#xff0c;准备两台服务器&#xff0c;分别安装docker 我这里有两台centos服务器 主服务器IP&#xff1a;192.168.252.134 从服务器IP&#xff1a;192.168.252.135 1.两台服务器分别拉取redis镜像 docker pull redis 2.查看镜像 d…

编写备份MySQL 脚本

目录 环境准备 增量备份 增量备份和差异备份 完整代码如下 测试脚本是否正常 星期天运行脚本&#xff08;完全备份&#xff09; 星期一运备份脚本&#xff08;增量备份&#xff09; 星期二备份数据&#xff08;其他天--增量备份&#xff09; 星期三备份数据&#xff08;差异备…

cobalt strike基础测试

下载链接4.3&#xff1a;https://pan.baidu.com/s/1E_0t30tFWRiE5aJ7F-ZDPg 链接4.0&#xff1a;https://pan.baidu.com/s/1SkMmDem3l6bePqIDgUz2mA 提取码&#xff1a;burp 一、简介&#xff1a; cobalt strike(简称CS)是一款团队作战渗透测试神器&#xff0c;分为客户端…

C++笔试强训day37

目录 1.旋转字符串 2.合并k个已排序的链表 3.滑雪 1.旋转字符串 链接https://www.nowcoder.com/practice/80b6bb8797644c83bc50ac761b72981c?tpId196&tqId37172&ru/exam/oj 如果 A 字符串能够旋转之后得到 B 字符串的话&#xff0c;在 A 字符串倍增之后的新串中&am…

linux驱动学习(二)之点灯

需要板子一起学习的可以这里购买&#xff08;含资料&#xff09;&#xff1a;点击跳转 如何实现对硬件控制 分析硬件原理图&#xff08;开发板的原理图&#xff09;----> 分析硬件的控制方法 ---> 控制硬件时&#xff0c;所要用到的寄存器 ----> 了解控制硬件寄存器的…

关于如何在Arch Linux上编写自己的第一个module

前一段时间一直想深入学习编写一个module插入到自己的内核当中&#xff0c;但是网上的资料基本上全都针对的Ubuntu和Debian等流行的Linux发行版&#xff0c;这里打算简单的记录一波博客。 啥是Module?(着急可不看) 众所周知&#xff1a;现代宏内核架构的操作系统都会借鉴微内核…

【stableDiffusion】HuggingFace模型下载(只要知道url,就直接开始下载)

一、方法 有人说&#xff0c;那我怎么知道 huggingface 上面我想要的资源的url&#xff0c;去哪儿找啊&#xff1f; 那就涉及到一些魔法手段了&#xff0c;或者你能在其他人的博客或者百度上搜索到合适的url。 我这个办法是用来节约我的魔法的流量的。 1.迅雷 1.1 打开迅雷&…

【Kotlin】简单介绍与使用kotlin

&#x1f34e;个人博客&#xff1a;个人主页 &#x1f3c6;个人专栏&#xff1a;Kotlin ⛳️ 功不唐捐&#xff0c;玉汝于成 目录 前言 正文 特点 变量和常量 数据类型和类型推断 函数 字符串模板 条件表达式 空安全 when 表达式 循环 我的其他博客 前言 Kotlin是…

PostgreSQL基础(六):PostgreSQL基本操作(二)

文章目录 PostgreSQL基本操作(二) 一、字符串类型 二、日期类型 三、

比较与深浅克隆

1.比较 &#xff08;1&#xff09;Comparable接口&#xff1a;&#xff08;重写compareTo方法&#xff09; 由于它是一个接口&#xff0c;而且在这个接口中只有一个compareTo方法&#xff0c;所以所有实现该接口的类都需要重写。这个compareTo方法相当于制定一个比较标准&…

Raid的全局热备和独立热备

目录 Hot Spare背景: 1.定义与功能 2.数据存储与容量 3.配置模式 4.数量限制&#xff1a; 5.数据重建: 6.管理与维护 实操全局热备和独立热备&#xff1a; 配置全局热备: 配置独立热备: Hot Spare背景: 在RAID配置中&#xff0c;Hot Spare(热备)是一个非常重要的概念…

【数据结构与算法 | 二叉树篇】二叉树的前中后序遍历(递归版本)

1. 二叉树的概念 (1). 二叉树的结构 借用了一下力扣的模板 public class TreeNode {int val;TreeNode left;TreeNode right;TreeNode() {}TreeNode(int val) { this.val val; }TreeNode(int val, TreeNode left, TreeNode right) {this.val val;this.left left;this.righ…

【C++】list的使用(上)

&#x1f525;个人主页&#xff1a; Forcible Bug Maker &#x1f525;专栏&#xff1a; STL || C 目录 前言&#x1f308;关于list&#x1f525;默认成员函数构造函数&#xff08;constructor&#xff09;析构函数&#xff08;destructor&#xff09;赋值运算符重载 &#x1…

第十六课,海龟画图:设置画笔颜色、宽度函数,移动画笔函数

一&#xff0c;turtle.color()&#xff1a;画笔颜色函数 这个函数能设置画笔画出来的颜色&#xff0c;当然&#xff0c;使用它之前你需要认识有哪些“颜料”可供你选择&#xff0c;turtle库的color()函数可以选择以下颜色&#xff1a; "white" 白色&#xff08;建议…

进程间通信(27000字超详解)

&#x1f30e;进程间通信 文章目录&#xff1a; 进程间通信 进程间通信简介       进程间通信目的       初识进程间通信       进程间通信的分类 匿名管道通信       认识管道       匿名管道       匿名管道测试       管道的四种…

Linux系统编程(七)网络编程TCP、UDP

本文目录 一、基础知识点1. IP地址2. 端口3. 域名4. 网络协议类型5. IP协议类型6. 字节序7. socket套接字 二、常用API1. socket套接字描述符2. bind套接字绑定3. listen设置客户端连接个数4. accept接收客户端请求5. connect连接服务端 三、编程流程1.TCP编程 在学习本章之前&…