C++日期类实现(联系类和对象)

目录

一.6个默认成员函数

二.基本功能函数

三.日期与天数的加减

四.前后置++和--

五.比较运算符重载

六.日期减日期

七.全部代码

        1.Date.h

        2.Date.cpp


C++初学者都可以在学习完类和对象后写一个日期类,以下是实现细节。

一.6个默认成员函数

        对于日期类默认成员函数使用编译器生成的足矣,这里就不多赘述。

        提醒一下对于赋值运算符重载需要判断是不是自己给自己赋值。

二.基本功能函数

        对于我们实现日期+-天数有用的基本功能函数。

        1.GetMonthDay(返回对应月份的天数,也考虑了闰年二月天数变化)

// 获取某年某月的天数
int Date::GetMonthDay(int year, int month)
{static int arr[13] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 };//数组扩大1下标就不用-1了if (month == 2 && ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0))//判断闰年return arr[month] + 1;return arr[month];
}

        2.Judge(判断月份是否合法)

//判断日期是否合法
bool Date::judge()
{if (_month <= 12 && _month > 0 && _day <= GetMonthDay(_year, _month) && (_day > 0))//判断月份和天数是不是正常的return true;return false;
}

        3.Print(输出日期)

//输出日期
void Date::Print()
{cout << _year << " " << _month << " " << _day << endl;
}

三.日期与天数的加减

        我们可以实现+=和-=的功能,然后+和-分别复用+=和-=的功能。

        1.+=和+

// 日期+=天数
Date& Date::operator+=(int day)//可以理解为让日期一个月一个月往前走
{_day += day;//直接把天数加上去while (!judge())//一直对日期进行处理,直到合法为止{_day -= GetMonthDay(_year, _month);//这里注意_day是先减_month是后++的_month++;if (_month == 13)//月份越界就让年份加1,相当于月份变为下一年的1月{_year++;_month = 1;}}return *this;//引用返回就直接返回*this
}// 日期+天数
Date Date::operator+(int day)
{Date tmp(*this);//创建临时对象tmp += day;//复用+=return tmp;//不是引用返回所以是返回临时对象
}

        2.-=和-

// 日期-=天数
Date& Date::operator-=(int day)//可以理解让日期一个月一个月往后退
{_day -= day;//和+=一样直接让_day减daywhile (!judge())//一直对日期处理直到合法为止{_month--;if (_month == 0)//月份非法就让year-1,相当于是到了去年的12月{_year--;_month = 12;}_day += GetMonthDay(_year, _month);//注意这里是月份先减1,然后才加天数,和+=是相反的}return *this;//引用返回所以是返回*this
}// 日期-天数
Date Date::operator-(int day)
{Date tmp(*this);//创建临时对象tmp -= day;//复用-=return tmp;//不是引用返回所以是返回临时对象
}

四.前后置++和--

        ++和--复用+=和-=就可以,需要注意的是前置和后置在函数原型上的区别。

        1.++

// 前置++
Date& Date::operator++()
{*this += 1;//复用+=return *this;//注意是引用返回
}// 后置++
Date Date::operator++(int)//后置++需要在参数表加一个int用来占位,用来区分前后置++,编译器会进行特殊处理
{++(*this);//自身也要++Date tmp(*this);//创建临时对象return tmp;//注意事项传值返回
}

        2.--

// 前置--
Date& Date::operator--()
{*this -= 1;//复用-=return *this;//注意是引用返回
}// 后置--
Date Date::operator--(int)//后置--需要在参数表加一个int用来占位,用来区分前后置--,编译器会进行特殊处理
{--(*this);//自身也要--Date tmp(*this);//创建临时对象return tmp;//注意事项传值返回
}

五.比较运算符重载

        只需要实现==和>或<,其他的比较运算符复用前两个就行。

// >运算符重载
bool Date::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;elsereturn false;
}
// ==运算符重载
bool Date::operator==(const Date& d)
{if (_year == d._year && _month == d._month && _day == d._day)//全部都一样就返回truereturn true;return false;
}
// >=运算符重载
bool Date::operator >= (const Date& d)
{return *this > d || *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 Date::operator-(const Date& d)
{Date tmp, target;//用两个临时变量计算int day = 0, flag = 0;//day是计算天数,flag是判断*this是否小于dif (*this < d){flag = 1;//*this小于d,令flag=1tmp = (*this);//tmp默认是小的日期target = (d);//target默认是大的日期}else{tmp = (d);//tmp默认是小的日期target = (*this);//target默认是大的日期}while (tmp != target)//两个日期不相等就一直处理{tmp++;//小日期++day++;//计算天数差值}if (flag)//如果*this小于d,那么天数差值就是负数day *= -1;return day;
}

七.全部代码

        1.Date.h

#pragma once
class Date
{
public:// 获取某年某月的天数int GetMonthDay(int year, int month);//判断日期是否合法bool judge();//输出日期void Print();// 全缺省的构造函数Date(int year = 1900, int month = 1, int day = 1){_year = year;_month = month;_day = day;}// 拷贝构造函数// d2(d1)Date(const Date& d);// 赋值运算符重载// d2 = d3 -> d2.operator=(&d2, d3)Date& operator=(const Date& d);// 析构函数~Date();// 日期+=天数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);// ==运算符重载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);// 日期-日期 返回天数int operator-(const Date& d);private:int _year;int _month;int _day;
};

        2.Date.cpp

#define _CRT_SECURE_NO_WARNINGS 1
#include<iostream>
#include"Date.h"
using namespace std;// 获取某年某月的天数
int Date::GetMonthDay(int year, int month)
{static int arr[13] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 };//数组扩大1下标就不用-1了if (month == 2 && ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0))//判断闰年return arr[month] + 1;return arr[month];
}//判断日期是否合法
bool Date::judge()
{if (_month <= 12 && _month > 0 && _day <= GetMonthDay(_year, _month) && (_day > 0))//判断月份和天数是不是正常的return true;return false;
}//输出日期
void Date::Print()
{cout << _year << " " << _month << " " << _day << endl;
}// 拷贝构造函数
// d2(d1)
Date::Date(const Date& d)
{_year = d._year;_month = d._month;_day = d._day;
}// 赋值运算符重载
// d2 = d3 -> d2.operator=(&d2, d3)
Date& Date::operator=(const Date& d)
{if (&d != this){_year = d._year;_month = d._month;_day = d._day;return *this;}
}// 析构函数
Date::~Date()
{_year = 0;_month = 0;_day = 0;
}// 日期+=天数
Date& Date::operator+=(int day)//可以理解为让日期一个月一个月往前走
{_day += day;//直接把天数加上去while (!judge())//一直对日期进行处理,直到合法为止{_day -= GetMonthDay(_year, _month);//这里注意_day是先减_month是后++的_month++;if (_month == 13)//月份越界就让年份加1,相当于月份变为下一年的1月{_year++;_month = 1;}}return *this;//引用返回就直接返回*this
}// 日期+天数
Date Date::operator+(int day)
{Date tmp(*this);//创建临时对象tmp += day;//复用+=return tmp;//不是引用返回所以是返回临时对象
}// 日期-天数
Date Date::operator-(int day)
{Date tmp(*this);//创建临时对象tmp -= day;//复用-=return tmp;//不是引用返回所以是返回临时对象
}// 日期-=天数
Date& Date::operator-=(int day)//可以理解让日期一个月一个月往后退
{_day -= day;//和+=一样直接让_day减daywhile (!judge())//一直对日期处理直到合法为止{_month--;if (_month == 0)//月份非法就让year-1,相当于是到了去年的12月{_year--;_month = 12;}_day += GetMonthDay(_year, _month);//注意这里是月份先减1,然后才加天数,和+=是相反的}return *this;//引用返回所以是返回*this
}// 前置++
Date& Date::operator++()
{*this += 1;//复用+=return *this;//注意是引用返回
}// 后置++
Date Date::operator++(int)//后置++需要在参数表加一个int用来占位,用来区分前后置++,编译器会进行特殊处理
{++(*this);//自身也要++Date tmp(*this);//创建临时对象return tmp;//注意事项传值返回
}// 后置--
Date Date::operator--(int)//后置--需要在参数表加一个int用来占位,用来区分前后置--,编译器会进行特殊处理
{--(*this);//自身也要--Date tmp(*this);//创建临时对象return tmp;//注意事项传值返回
}// 前置--
Date& Date::operator--()
{*this -= 1;//复用-=return *this;//注意是引用返回
}// >运算符重载
bool Date::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;elsereturn false;
}
// ==运算符重载
bool Date::operator==(const Date& d)
{if (_year == d._year && _month == d._month && _day == d._day)//全部都一样就返回truereturn true;return false;
}
// >=运算符重载
bool Date::operator >= (const Date& d)
{return *this > d || *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 Date::operator-(const Date& d)
{Date tmp, target;//用两个临时变量计算int day = 0, flag = 0;//day是计算天数,flag是判断*this是否小于dif (*this < d){flag = 1;//*this小于d,令flag=1tmp = (*this);//tmp默认是小的日期target = (d);//target默认是大的日期}else{tmp = (d);//tmp默认是小的日期target = (*this);//target默认是大的日期}while (tmp != target)//两个日期不相等就一直处理{tmp++;//小日期++day++;//计算天数差值}if (flag)//如果*this小于d,那么天数差值就是负数day *= -1;return day;
}

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

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

WPS或EXCEL表格单元格下拉快捷选择项修改及设置方法

WPS或新版本EXCEL的设置下拉选项的方法是.点击一个单元格,菜单上选择数据,下拉列表即可设置,双击文字可编辑 EXCEL 旧的版本不同,可能有不同方法 方法一, 1.在空白区域里面&#xff0c;准备好需要填入下拉菜单里面的内容。 2.选中一个需要添加下拉菜单的单元格&#xff0c;然后…

pcl--第三节 关键点

简介 关键点也称为兴趣点&#xff0c;它是 2D 图像或 3D 点云或曲面模型上,可以通过检测标准来获取的具有稳定性、区别性的点集。从技术上来说,关键点的数量比原始点云或图像的数据量少很多&#xff0c;其与局部特征描述子结合组成关键点描述子。常用来构成原始数据的紧凑表示…

嵌入式Linux驱动开发(I2C专题)(一)

一、I2C协议 1.1、硬件连接 I2C在硬件上的接法如下所示&#xff0c;主控芯片引出两条线SCL,SDA线&#xff0c;在一条I2C总线上可以接很多I2C设备。 1.2、IIC传输数据的格式 1.2.1、写操作 流程如下&#xff1a; 主芯片要发出一个start信号然后发出一个设备地址(用来确定是…

【LangChain系列 9】Prompt模版——MessagePromptTemplate

原文地址&#xff1a;【LangChain系列 9】Prompt模版——MessagePromptTemplate 本文速读&#xff1a; MessagePromptTemplate MessagesPlaceholder 在对话模型(chat model) 中&#xff0c; prompt主要是封装在Message中&#xff0c;LangChain提供了一些MessagePromptTemplat…

javaee spring整合mybatis spring帮我们创建dao层

项目结构 pom依赖 <?xml version"1.0" encoding"UTF-8"?><project xmlns"http://maven.apache.org/POM/4.0.0" xmlns:xsi"http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation"http://maven.apache.org/P…

Function之Bluetooth模块

0 Preface/Foreword 1 数据结构 1.1 func_bt_t typedef struct{u16 warning_status;u8 disp_status;u8 hid_menu_flag;u8 hid_discon_flag;u8 siri_kl_flag;u8 user_kl_flag;u8 tws_status;u8 ble_status;u8 bt_is_inited;u8 rec_pause : 1;u8 pp_2_unmute : 1;u8 need_p…

HSRP(热备份路由选择协议)的概念,原理与配置实验

作者&#xff1a;Insist-- 个人主页&#xff1a;insist--个人主页 梦想从未散场&#xff0c;传奇永不落幕&#xff0c;持续更新优质网络知识、Python知识、Linux知识以及各种小技巧&#xff0c;愿你我共同在CSDN进步 目录 一、了解HSRP协议 1. 什么是HSRP协议 2、HSRP协议的…

Pycharm 安装第三方库numpy,显示超时?

一、配置终端Terminal中的镜像源 1.更改pip源&#xff0c;在终端输入如下命令 pip config set global.index-url https://pypi.tuna.tshua.edu.cn/simple2.在终端使用pip install 安装第三方库 例如: pip install numpy二、配置仓库镜像源 1.第一步: 2.第二步&#xff1a;输…

怎么获取别人店铺的商品呢?

jd.item_search_shop(获得店铺的所有商品) 为了进行电商平台 的API开发&#xff0c;首先我们需要做下面几件事情。 1&#xff09;开发者注册一个账号 2&#xff09;然后为每个JD应用注册一个应用程序键&#xff08;App Key) 。 3&#xff09;下载JDAPI的SDK并掌握基本的API…

4.docker容器编排(docker compose 与 docker swarm)

本文目录 1.容器编排2.Docker Compose1.Docker Compose 安装2.Docker Compose 示例1.使用 docker-compose 启动 nginx2.docker compose 常用命令3.校验 docker-compose.yml 是否有错误4.创建服务&#xff0c;启动容器5.弹性伸缩<扩缩容> 3.Docker Swarm1.Swarm 架构图2.S…

2023.9.6 Redis 的基本介绍

目录 Redis 的介绍 Redis 用作缓存和存储 session 信息 Redis 用作数据库 消息队列 消息队列是什么&#xff1f; Redis 用作消息队列 Redis 的介绍 特点&#xff1a; 内存中存储数据&#xff1a;奠定了 Redis 进行访问和存储时的快可编程性&#xff1a;支持使用 Lua 编写脚…

【Flink】 FlinkCDC读取Mysql( DataStream 方式)(带完整源码,直接可使用)

简介: FlinkCDC读取Mysql数据源,程序中使用了自定义反序列化器,完整的Flink结构,开箱即用。 本工程提供 1、项目源码及详细注释,简单修改即可用在实际生产代码 2、成功编译截图 3、自己编译过程中可能出现的问题 4、mysql建表语句及测试数据 5、修复FlinkCDC读取Mys…

软件测试/测试开发丨Web自动化—capability参数配置 学习笔记

点此获取更多相关资料 本文为霍格沃兹测试开发学社学员学习笔记分享 原文链接&#xff1a;https://ceshiren.com/t/topic/27336 一、capability概述 capability是webdriver支持的标准命令之外的扩展命令&#xff08;配置信息&#xff09;配置web驱动属性&#xff0c;如浏览器名…

leetcode分类刷题:二叉树(一、简单的层序遍历)

二叉树的深度优先遍历题目是让我有点晕&#xff0c;先把简单的层序遍历总结下吧&#xff1a;配合队列进行的层序遍历在逻辑思维上自然直观&#xff0c;不容易出错 102. 二叉树的层序遍历 本题是二叉树的层序遍历模板&#xff1a;每次循环将一层节点出队&#xff0c;再将一层节点…

Java的interface应用和面向接口编程

记录&#xff1a;477 场景&#xff1a;Java的关键字interface应用&#xff0c;一个接口&#xff0c;多个实现类。面向接口编程&#xff0c;把业务逻辑线提取出来作为接口&#xff0c;具体的业务实现通过该接口的实现类来完成。 版本&#xff1a;JDK 1.8。 1.一个Java接口 (…

自动化测试开发 —— 如何封装自动化测试框架?

封装自动化测试框架&#xff0c;测试人员不用关注框架的底层实现&#xff0c;根据指定的规则进行测试用例的创建、执行即可&#xff0c;这样就降低了自动化测试门槛&#xff0c;能解放出更多的人力去做更深入的测试工作。本篇文章就来介绍下&#xff0c;如何封装自动化测试框架…

不知道有用没用的Api

encodeURIComponent(https://www.baidu.com/?name啊啊啊) decodeURIComponent(https%3A%2F%2Fwww.baidu.com%2F%3Fname%3D%E5%95%8A%E5%95%8A%E5%95%8A) encodeURI(https://www.baidu.com/?name啊啊啊) decodeURI(https://www.baidu.com/?name%E5%95%8A%E5%95%8A%E5%95%8A) …

Mojo 语言官网

Mojo面向 AI 开发者的新型编程语言&#xff0c;无缝支持CPU、GPU&#xff0c;兼容Python&#xff0c;跟Python类似的语法&#xff0c;但是比Python快68000倍。目前Mojo仅支持Ubuntu&#xff0c;暂不支持Windows和Mac&#xff0c;可以在Mojo Playground先体验一下。 Mojo 语言…

Pytorch从零开始实战03

Pytorch从零开始实战——天气识别 本系列来源于365天深度学习训练营 原作者K同学 文章目录 Pytorch从零开始实战——天气识别环境准备数据集模型选择模型训练数据可视化总结 环境准备 本文基于Jupyter notebook&#xff0c;使用Python3.8&#xff0c;Pytorch2.0.1cu118&…

Linux 修改SSH的显示样式,修改终端shell显示的样式,美观更改

要修改SSH的显示样式&#xff0c;您可以使用自定义的PS1&#xff08;提示字符串1&#xff09;变量来更改命令行提示符的外观。在您的情况下&#xff0c;您想要的格式似乎包括日期和时间&#xff0c;以及当前目录。以下是一个示例PS1设置&#xff0c;可以实现您所描述的样式&…