【是C++,不是C艹】 手把手带你实现Date类(附源码)

这篇具有很好参考价值的文章主要介绍了【是C++,不是C艹】 手把手带你实现Date类(附源码)。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

💞💞欢迎来到 Claffic 的博客💞💞

 👉 专栏:《是C++,不是C艹》👈

【是C++,不是C艹】 手把手带你实现Date类(附源码),是C++,不是C艹,小项目,c++【是C++,不是C艹】 手把手带你实现Date类(附源码),是C++,不是C艹,小项目,c++

前言:

恍惚间,已经两个月没更新了 (;´д`)ゞ 我忏悔... 

但C++的学习不能停止!这期带大家实践一波,手把手教大家实现一个Date类,以感受C++类的魅力

注:

你最好是学完了C语言,并学过一些初阶的数据结构。


(没有目录) ヽ( ̄ω ̄( ̄ω ̄〃)ゝ 

Part1:一个引子

🌰我猜你用过倒数日:

【是C++,不是C艹】 手把手带你实现Date类(附源码),是C++,不是C艹,小项目,c++

🪄这其实是一种简单的日期机算器,用来计算某事件 已经 / 还有 多少天

那么我们搜索 日期计算器 会看到它的两大功能:

日期推算:

【是C++,不是C艹】 手把手带你实现Date类(附源码),是C++,不是C艹,小项目,c++

计算日期差:

【是C++,不是C艹】 手把手带你实现Date类(附源码),是C++,不是C艹,小项目,c++ 

❓那么这些功能是怎么实现的呢?

接下来就由我来带你揭开它的神秘面纱!

Part2:思路

1.日期推算

❓你想,先扔给你一个日期,再给你一个整数(正往后,负往前),你会怎么推算新日期?

简单情况:日相加,得到的日部分不超过当前月份的天数,就如 2023-8-21 与 1,得 2023-8-22 。

进位情况:日相加,得到的日部分超出当前月份的天数,给月进位,如 2023-8-21 与 12,得                            2023-9-2;

                  另有月满13,需要月重置1再给年进位,如 2023-8-21 与 133,得 2024-1-1

🚨注意还要考虑闰年 非闰年:闰年2月有29日  非闰年2月有28日。

2.计算日期差

❓再想,扔给你两个日期,你怎么计算两者之间间隔了多少天?

你是不是这样想的:年先做差,月再做差,日再做差,然后都换算成日,最后相加?

嗯,这是很直接的思路,可以,但没必要。

✅这里提供另一种思路

两个日期,必然有大有小(暂时忽略相等),找出较小者,让较小者往较大者增长,每次增加一日(++),加个计数器,计出来的就是两者的日期差。

或许你会感到麻烦,那你还是C语言的思维!

📢别忘了:C++是面向对象的语言!我们完全可以创建一个日期类来完成相关的计算和比较

Part3:实现

1.创建类

一个日期,包含年月日三个基本数据,这些不需要对用户公开,私有即可:

class Date
{
public:
    // todo

private:
	int _year;
	int _month;
	int _day;
};

另外添加一些基本的方法

先来解决最基础的问题:那就是每个月有几天

我们不妨来封装一个方法,来获取这个月里有几天:

int Date::GetMonthDay(int year, int month) // 年份是来判断是否是闰年的
{
    // 第一个元素无实际效用,但就能保证 下标 == 月数
	static int arr[13] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 }; // 一三五七八十腊...
	// 2月前提下再判断年的情况,减少消耗
    if (month == 2 && ((year % 4 == 0) && (year % 100 != 0) || (year % 400 == 0))) 
		return 29;
	else
		return arr[month];
}

构造:

Date::Date(int year, int month, int day)
{
    // 判断合法性 
	if (month > 0 && month < 13
		&& day > 0 && day < GetMonthDay(year, month))
	{
		_year = year;
		_month = month;
		_day = day;
	}
	else
	{
		cout << "非法日期" << endl;
		assert(false);
	}
}

这里可以给一个全缺省,不给数据就默认是这个日期,还蛮香~

Date(int year = 2008, int month = 1, int day = 1);

展示:

// 代码较短,在类中写就OK,不用跨文件了
void Print() const
{
	cout << _year << "-" << _month << "-" << _day << endl;
}

2.日期推算

⚔️我们期望得到这样的效果:

void DateTest1()
{
	Date d1(2023,8,21);
	Date d2 = d1 + 133;
	d1.Print();
	d2.Print();
}

👁️‍🗨️运行结果:

【是C++,不是C艹】 手把手带你实现Date类(附源码),是C++,不是C艹,小项目,c++

我们知道,普通的 + 是对整型,浮点型,字符型等内置类型起效的,而这里的 + 在 Date 和 int 之间起作用了,为甚?

没错,这就是C++大名鼎鼎的运算符重载!(其实 = 也重载了)

// 日期 + 天数
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& Date::operator=(const Date& d) // 原内容无需修改,加const
{
	_day = d._day;
	_month = d._month;
	_year = d._year;

	return *this;
}

3.计算日期差

⚔️预期效果:

void DateTest3()
{
	Date d5(2023, 8, 21);
	Date d6(2004, 3, 30);
	cout << d5 - d6 << endl;
	cout << d6 - d5 << endl;
}

👁️‍🗨️运行结果:

【是C++,不是C艹】 手把手带你实现Date类(附源码),是C++,不是C艹,小项目,c++

很明显,这是重载了 - ,使得 - 能在两个 Date 类之间起作用

🗡️按照二趴提供的思路,写下这样的代码:

int Date::operator-(const Date& d) const
{
	Date max = *this;
	Date min = d;
	int flag = 1; // 巧妙的flag,调节最后结果的正负
	if (*this < d)
	{
		max = d;
		min = *this;
		flag = -1;
	}
	int n = 0;
	while (min != max)
	{
		++min;
		++n;
	}
	return n * flag;
}

🗡️我们发现,里面的 <, !=, ++ 都是需要针对 Date 进行重载的:

// <运算符重载
bool Date::operator<(const Date& d) const
{
	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;
	}

	return false;
}
// ==运算符重载
bool Date::operator==(const Date& d) const
{
	return _year == d._year
		&& _month == d._month
		&& _day == d._day;
}

// !=运算符重载
bool Date::operator != (const Date& d) const
{
	return !(*this == d);
}
// 前置++
Date& Date::operator++()
{
	*this += 1; // 还需重载 +=
	return *this;
}

// 日期+=天数
Date& Date::operator+=(int day) // += 需要修改本身
{
	_day += day;
	while (_day > GetMonthDay(_year, _month))
	{
		_day -= GetMonthDay(_year, _month);
		_month++;
		if (_month == 13)
		{
			_year++;
			_month = 1;
		}
	}
	return *this;
}

经过一系列重载后,就可以达到计算日期差的效果咯!

Part4:其他功能

1.输入输出

❓在实现了两种主要的功能之后,既然把 Date 当作一个类了,那为甚马不能搞得像输入一个整数那样进行输入呢?

⚔️预期效果

void DateTest4()
{
	Date d7;

	cin >> d7;
	cout << d7 << endl;
}

👁️‍🗨️运行结果:

【是C++,不是C艹】 手把手带你实现Date类(附源码),是C++,不是C艹,小项目,c++

🗡️没错,这需要将 cin 和 cout 进行重载:

istream& operator>>(istream& in, Date& d)
{
	int year, month, day;
	in >> year >> month >> day;

	if (month > 0 && month < 13
		&& day > 0 && day < d.GetMonthDay(year, month))
	{
		d._year = year;
		d._month = month;
		d._day = day;
	}
	else
	{
		cout << "非法日期" << endl;
		assert(false);
	}

	return in;
}
ostream& operator<<(ostream& out, const Date& d)
{
	out << d._year << "年" << d._month << "月" << d._day << "日" << endl;

	return out;
}

但是这样还不行,因为 cin 修改了私有的数据,哪有什么办法能让这个重载能访问私有的数据呢?

对,那就是友元

可以在类中声明,这个重载是类的朋友,允许他访问私密~

friend ostream& operator<<(ostream& out, const Date& d);
friend istream& operator>>(istream& in, Date& d);

2.前置和后置

❓我们知道,++ / -- 是有前置和后置之分的,那么在重载中前置和后置又是怎么区分的呢?

这里就以 ++ 为例吧:

// 前置++
Date& Date::operator++()
{
	*this += 1;
	return *this;
}

// 后置++
Date Date::operator++(int)
{
	Date tmp = *this;
	*this += 1;
	return tmp;
}

前置:先计算,后使用

后置:先使用,后计算

实现中,后置事先拷贝了自身,返回的还是原来的值,做到了后计算;而前置直接修改自身,返回自身,做到了先计算;

传参中,后置用 int 来与前置重载做区分,语法这样规定;

返回值上,后置返回类型,前置返回引用。

源码在此

Date.h:

#pragma once
#include<iostream>
#include<cassert>
using namespace std;

class Date
{
	friend ostream& operator<<(ostream& out, const Date& d);
	friend istream& operator>>(istream& in, Date& d);
public:
	// 获取某年某月的天数
	int GetMonthDay(int year, int month);

	void Print() const
	{
		cout << _year << "-" << _month << "-" << _day << endl;
	}
	
	// 全缺省的构造函数
	Date(int year = 2008, int month = 1, int day = 1);

	// 赋值运算符重载
	Date& operator=(const Date& d);

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

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

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

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

	// 前置++
	Date& operator++();

	// 后置++
	Date operator++(int);

	// 后置--
	Date operator--(int);

	// 前置--
	Date& operator--();

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

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

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

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

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

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

	// 日期-日期 返回天数
	int operator-(const Date& d) const;

private:
	int _year;
	int _month;
	int _day;
};

Date.cpp:

#define _CRT_SECURE_NO_WARNINGS 1
#include"Date.h"

// 获取某年某月的天数
int Date::GetMonthDay(int year, int month)
{
	static int arr[13] = { 0,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 arr[month];
}

// 全缺省的构造函数
Date::Date(int year, int month, int day)
{
	if (month > 0 && month < 13
		&& day > 0 && day < GetMonthDay(year, month))
	{
		_year = year;
		_month = month;
		_day = day;
	}
	else
	{
		cout << "非法日期" << endl;
		assert(false);
	}
}

// 赋值运算符重载
Date& Date::operator=(const Date& d)
{
	_day = d._day;
	_month = d._month;
	_year = d._year;

	return *this;
}

// <运算符重载
bool Date::operator<(const Date& d) const
{
	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;
	}

	return false;
}

// ==运算符重载
bool Date::operator==(const Date& d) const
{
	return _year == d._year
		&& _month == d._month
		&& _day == d._day;
}

// >=运算符重载 d1 >= d2
bool Date::operator >= (const Date& d) const
{
	return !(*this < d);
}

// >运算符重载
bool Date::operator > (const Date& d) const
{
	return !(*this <= d);
}

// <=运算符重载
bool Date::operator <= (const Date& d) const
{
	return *this < d || *this == d;
}

// !=运算符重载
bool Date::operator != (const Date& d) const
{
	return !(*this == d);
}

// 日期+=天数
Date& Date::operator+=(int day)
{
	_day += day;
	while (_day > GetMonthDay(_year, _month))
	{
		_day -= GetMonthDay(_year, _month);
		_month++;
		if (_month == 13)
		{
			_year++;
			_month = 1;
		}
	}
	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& Date::operator-=(int day)
{
	_day -= day;
	while (_day <= 0)
	{
		_day += GetMonthDay(_year, _month);
		_month--;
		if (_month == 0)
		{
			_year--;
			_month = 12;
		}
	}
	return *this;
}


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

	tmp._day -= day;
	while (tmp._day <= 0)
	{
		tmp._day += GetMonthDay(tmp._year, tmp._month);
		tmp._month--;
		if (tmp._month == 0)
		{
			tmp._year--;
			tmp._month = 12;
		}
	}
	return tmp;
} 

// 前置++
Date& Date::operator++()
{
	*this += 1;
	return *this;
}

// 后置++
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) const
{
	Date max = *this;
	Date min = d;
	int flag = 1;
	if (*this < d) // C艹,多了个分号 -- bug 记录
	{
		max = d;
		min = *this;
		flag = -1;
	}
	int n = 0;
	while (min != max)
	{
		++min;
		++n;
	}
	return n * flag;
}

ostream& operator<<(ostream& out, const Date& d)
{
	out << d._year << "年" << d._month << "月" << d._day << "日" << endl;

	return out;
}

istream& operator>>(istream& in, Date& d)
{
	int year, month, day;
	in >> year >> month >> day;

	if (month > 0 && month < 13
		&& day > 0 && day < d.GetMonthDay(year, month))
	{
		d._year = year;
		d._month = month;
		d._day = day;
	}
	else
	{
		cout << "非法日期" << endl;
		assert(false);
	}

	return in;
}

 

代码已上传至 我的 gitee

拿走不谢~


总结: 

实现 Date 类,并没有那么难,明确类的特征,捕捉到必要数据,再进行方法的实现即可,这次用了不少运算符重载。

码文不易 

如果你觉得这篇文章还不错并且对你有帮助,不妨支持一波哦  💗💗💗文章来源地址https://www.toymoban.com/news/detail-684738.html

到了这里,关于【是C++,不是C艹】 手把手带你实现Date类(附源码)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 【数据结构】—堆详解(手把手带你用C语言实现)

                                            食用指南:本文在有C基础的情况下食用更佳                                          🔥 这就不得不推荐此专栏了: C语言                                        ♈️ 今日夜电波: 水星—今泉愛夏              

    2024年02月07日
    浏览(62)
  • 【reverse】手把手带你基于dll实现多次SMC

    SMC,即self modifying code,自修改代码,逆向入门SMC可以看一下我的题解。我打算实现一个类似于【网鼎杯2020青龙组】jocker的SMC方案。这个方案不需要用到汇编,因此门槛极低( 连小小前端都能学会 )。为什么要基于dll呢?因为代码段加密功能是通过外部python脚本完成的,将自

    2024年02月02日
    浏览(61)
  • 手把手带你用Python和文心一言搭建《AI看图写诗》网页项目(附上完整项目源码)

    今年年初,ChatGPT的火爆在全球掀起AI大模型的开发热潮,国内外的科技公司纷纷加入“百模大战”行列。百度在率先发布了国内第一款人工智能大语言模型“文心一言”后,又推出了文心千帆大模型平台,帮助企业和开发者加速大模型应用落地。 而最近百度创始人、董事长兼

    2024年02月08日
    浏览(75)
  • 【数据结构】—手把手带你用C语言实现栈和队列(超详细!)

                                       食用指南:本文在有C基础的情况下食用更佳                                     🔥 这就不得不推荐此专栏了:C语言                                   ♈️ 今日夜电波:Tell me —milet                    

    2024年02月14日
    浏览(119)
  • 手把手带你实现Dubbo集成Nacos作为注册中心(超详细+全代码)

    Nacos简介 什么是Nacos? Nacos /nɑ:kəʊs/ 是 Dynamic Naming and Configuration Service的首字母简称,一个更易于构建云原生应用的动态服务发现、配置管理和服务管理平台。 Nacos 致力于帮助您发现、配置和管理微服务。Nacos 提供了一组简单易用的特性集,帮助您快速实现动态服务发现、服

    2024年02月09日
    浏览(55)
  • 手把手带你实现ChatGLM2-6B的P-Tuning微调

    参考文献:chatglm2ptuning 注意问题1:AttributeError: ‘Seq2SeqTrainer’ object has no attribute \\\'is_deepspeed_enabl torch.distributed.elastic.multiprocessing.errors.ChildFailedError: 可能是版本太高,可以参考chatglm2的环境 1. ChatGLM2-6B的P-Tuning微调 ChatGLM2-6B :https://github.com/THUDM/ChatGLM2-6B 模型地址 :https://hug

    2024年02月17日
    浏览(58)
  • 从0到1,手把手带你开发截图工具ScreenCap------001实现基本的截图功能

    从0到1,手把手带你开发windows端的截屏软件ScreenCap 当前版本:ScreenCap---001 支持全屏截图 支持鼠标拖动截图区域 支持拖拽截图 支持保存全屏截图 支持另存截图到其他位置 注:博主所有资源永久免费,若有帮助,请点赞转发是对我莫大的帮助 注:博主本人学习过程的分享,

    2024年02月05日
    浏览(46)
  • 从0到1,手把手带你开发截图工具ScreenCap------002实现设置默认保存的图片位置

    在ScreenCap实现截图功能后增加设置图片默认保存位置的功能 实现选择文件夹作为截图的默认保存位置 注:博主所有资源永久免费,若有帮助,请点赞转发是对我莫大的帮助 注:博主本人学习过程的分享,引用他人的文章皆会标注原作者 注:本人文章非盈利性质,若有侵权请

    2024年02月05日
    浏览(76)
  • 从0到1,手把手带你开发截图工具ScreenCap------003实现最小化程序到托盘运行

    为了方便截图干净,实现最小化程序到托盘运行,简洁,勿扰 实现最小化程序到托盘运行 实现托盘菜单功能 实现回显主窗体 实现托盘开始截屏 实现气泡信息提示 实现托盘程序提示 实现托盘退出程序 封装完好,可复用 注:博主所有资源永久免费,若有帮助,请点赞转发是

    2024年02月05日
    浏览(53)
  • 手把手带你使用ESP8266 与 STM32F103C8实现网络服务器

    随着现在物联网设备的而越来越多,现在市场上出现越来越多的物联网设备,其中 ESP8266 是最受欢迎、价格便宜且易于使用的模块,它可以将您的硬件连接到互联网。 今天我们就以ESP8266和STM32来实现一台网络服务器,我们使用 ESP8266 将 STM32F103C8 连接到互联网。 ESP8266 Wi-Fi 模

    2024年01月23日
    浏览(129)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包