类和对象(4):Date类.运算符重载 1

一、赋值运算符重载

1.1 运算符重载

运算符重载是具有特殊函数名的函数,函数名字为:关键词operator+需要重载的运算符符号

  1. 不能重载C/C++中未出现的符号,如:operator@
  2. 重载操作符必须有一个类类型参数。
  3. 不能改变用于内置类型运算的运算符其具有的含义。
cpp 复制代码
// 以下代码只是为了举例,本质是错误的
int operator+(int a, int b)
{
    return a - b;// error
}
  1. 作为类成员函数重载时,第一个参数为隐藏的this
  2. .*::sizeof、三目运算符?:.,以上5个预算符不能被重载。
1.2 Date类举例

重点为运算符重载中关键的细节。

cpp 复制代码
// Date.h
class Date
{
public:
	Date(int year = 1, int month = 1, int day = 1)
	{
		_year = year;
		_month = month;
		_day = day;
	}

	void Print()
    {
        cout << _year << " " << _month << " " << _day << endl;
	}
    
    int GetMonthDay(int year, int month)// 获取当年当月有多少天
	{
        assert(month >= 1 && month <= 12);
        int Day[13] = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
        if (month == 2 && (year % 400 == 0 || (year % 4 == 0 && year % 100 != 0)))
        {
            return 29;
        }
		return Day[month];
	}

	Date& operator+=(int x);
	Date operator+(int x);

private:
	int _year;
	int _month;
	int _day;
};
cpp 复制代码
// Date.cpp
Date& Date::operator+=(int x)// operator+=(Date* this, int x)
{
	_day += x;
	while (_day > GetMonthDay(_year, _month))
	{
		_day -= GetMonthDay(_year, _month);
		_month++;
		if (_month == 13)
		{
			_year++;
			_month = 1;
		}
	}
	return *this;
}

Date Date::operator+(int x)
{
	Date tmp(*this);
	tmp += x;
	return tmp;
}
  1. +=重载的重点为返回值类型为Date&*this在函数调用结束后并没有被销毁,传引用返回可以避免创建临时对象。
  2. 调用+重载时,对象本身不被改变,因此需要拷贝一个临时对象完成运算。
相关推荐
y52364813 分钟前
Javascript监控元素样式变化
开发语言·javascript·ecmascript
IT技术分享社区43 分钟前
C#实战:使用腾讯云识别服务轻松提取火车票信息
开发语言·c#·云计算·腾讯云·共识算法
极客代码1 小时前
【Python TensorFlow】入门到精通
开发语言·人工智能·python·深度学习·tensorflow
疯一样的码农1 小时前
Python 正则表达式(RegEx)
开发语言·python·正则表达式
&岁月不待人&1 小时前
Kotlin by lazy和lateinit的使用及区别
android·开发语言·kotlin
StayInLove1 小时前
G1垃圾回收器日志详解
java·开发语言
无尽的大道1 小时前
Java字符串深度解析:String的实现、常量池与性能优化
java·开发语言·性能优化
爱吃生蚝的于勒1 小时前
深入学习指针(5)!!!!!!!!!!!!!!!
c语言·开发语言·数据结构·学习·计算机网络·算法
羊小猪~~2 小时前
数据结构C语言描述2(图文结合)--有头单链表,无头单链表(两种方法),链表反转、有序链表构建、排序等操作,考研可看
c语言·数据结构·c++·考研·算法·链表·visual studio
binishuaio2 小时前
Java 第11天 (git版本控制器基础用法)
java·开发语言·git