IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> C++知识库 -> 【C++初阶】日期类的实现 -> 正文阅读

[C++知识库]【C++初阶】日期类的实现

目录

?1.获取某年某月的天数

2.全缺省构造函数

3.赋值运算符重载

日期+=天数

日期+天数

日期-天数

日期-=天数

前置++

后置++

前置--

后置--

日期-日期

4.运算符重载

日期类的实现:Gitee


?1.获取某年某月的天数

//获取某年某月的天数
	int GetMonthDay(int year,int month)
	{
		assert(month > 0 && month < 13);
		static int monthDays[13] = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
		//闰年的2月是29天
		if (month == 2 && (year % 4 == 0 && year % 100 != 0) || year % 400 == 0)
		{
			return 29;
		}
		return monthDays[month];
	}

2.全缺省构造函数

//全缺省的构造函数
	Date(int year = 0, int month = 1, int day = 1)
	{
		_year = year;
		_month = month;
		_day = day;
		//判断日期是否合法
		if (_year < 0
			|| _month <=0 || _month >= 13
			|| _day <= 0 || _day > GetMonthDay(_year,_month))
		{
			cout << _year << "/" << _month << "/" << _day << "->"<<"非法日期"<<endl;
		}
	}

3.赋值运算符重载

日期+=天数

//日期+=天数
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)
		{
			_year++;
			_month = 1;
		}
	}
	return *this;//出了作用域,d1还在

	//赋用+
	/**this = *this + day;
	return *this;*/
}

日期+天数

//日期+天数
Date Date::operator+(int day)
{
	/*Date tmp(*this);
	tmp._day += day;
	while (tmp._day > GetMonthDay(tmp._year, tmp._month))
	{
		tmp._day -= GetMonthDay(tmp._year, tmp._month);
		tmp._month++;
		if (tmp._month == 13)
		{
			tmp._year++;
			tmp._month = 1;
		}
	}
	return tmp;*/

	//赋用+=
	Date ret = *this;
	ret += day;
	return ret;
}

日期-天数

//日期-天数
Date Date::operator-(int day)
{
	Date ret = *this;
	ret -= day;
	return ret;
}

日期-=天数

//日期-=天数
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++()
{
	//_day += 1;
	日期不合法,进位
	//if (_day > GetMonthDay(_year, _month))
	//{
	//	_day -= GetMonthDay(_year, _month);
	//	_month++;
	//	if (_month == 13)
	//	{
	//		_year++;
	//		_month = 1;
	//	}
	//}
	//赋用
	*this += 1;
	return *this;
}

后置++

按正常的运算符重载规则,无法区分前置++和后置++重载
为了区分,这里做一个特殊处理,给后置++增加一个int参数,这样他们两个就构成函数重载

//后置++
Date Date::operator++(int)
{
	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;
}

日期-日期

//日期-日期   
int Date::operator-(const Date& d)
{
	Date max = *this, min = d;
	int flag = 1;
	if (*this < d)
	{
		max = d;
		min = *this;
		flag = -1;
	}
	int n = 0;
	while (min != max)
	{
		min++;
		n++;
	}
	return n*flag;
}

4.运算符重载

//>运算符重载
	bool operator > (const Date& d)
	{
		if (_year > d._year)
		{
			return true;
		}
		else if (_year == d._year && _month > d._month)
		{
			return true;
		}
		else if (_year == d._year && _month == d._month && _day > d._day)
		{
			return true;
		}
		else
		{
			return false;
		}
	}
	//==运算符重载
	bool operator==(const Date& d)
	{
		return _year == d._year
			&& _month == d._month
			&& _day == d._day;
	}
	//>=运算符重载
	bool operator >= (const Date& d)
	{
		return *this > d || *this == d;
	}
	//<运算符重载
	bool operator < (const Date& d)
	{
		return !(*this >= d);
	}
	//<=运算符重载
	bool operator <= (const Date& d)
	{
		return !(*this > d);
	}
	//!=运算符重载
	bool operator != (const Date& d)
	{
		return !(*this == d);
	}

日期类的实现:Gitee

  C++知识库 最新文章
【C++】友元、嵌套类、异常、RTTI、类型转换
通讯录的思路与实现(C语言)
C++PrimerPlus 第七章 函数-C++的编程模块(
Problem C: 算法9-9~9-12:平衡二叉树的基本
MSVC C++ UTF-8编程
C++进阶 多态原理
简单string类c++实现
我的年度总结
【C语言】以深厚地基筑伟岸高楼-基础篇(六
c语言常见错误合集
上一篇文章      下一篇文章      查看所有文章
加:2021-10-24 14:45:41  更:2021-10-24 14:45:53 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 4:05:22-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码