C++逐步介绍日期类的使用

目录

头文件

详细步骤

第一步

第二步

总代码

我们今天实现一个简单的计算日期

我们这里先给出头文件,后面一个一个解释

头文件 #pragma once #include<iostream> using std::cout; using std::endl; using std::cin; class Date { public: //定义构造函数 Date(int year = 1900, int month = 1, int day = 1); //打印日期 void Print() { cout << _year <<" " <<_month<<" " << _day << endl; } //运算符重载 Date operator+(int day); Date operator-(int day); Date& operator+=(int day); Date& operator-=(int day); 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); Date& operator++();//前置 Date operator++(int);//后置 Date& operator--();//前置 Date operator--(int);//后置 int operator-(Date d);//计算两个日期的差值 private: int _year; int _month; int _day; }; 详细步骤 第一步

计算闰年和判断日期是否合法

inline int GetMonthDay(int year, int month) { //多次调用的时候static能极大减小内存消耗,但是也可以删除,并不影响程序运行 static int _monthArray[13] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 }; int day = _monthArray[month]; if (month == 2 && (year % 4 == 0 && year % 100 != 0) || year % 400 == 0)//判断是否是闰年 { day = 29; } return day; } Date::Date(int year, int month, int day) { _year = year; _month = month; _day = day; if (!(year >= 0 && month >= 1 && month <= 12 && day > 0 && day <= GetMonthDay(year, month)))//看日期是否合法 { cout << "fail" << endl; exit(-1); } }

我们将year,month,day赋值之后,首先进行判断,如果出现异常天数直接终结程序(如2022,1,32,这种不存在的日期)

随后一个问题就出来了,因为闰年和非闰年的2月不同,所以我们又使用一个函数getmonthday,来判断闰年的同时获取当月天数;

有些同学可能直接是【0,31,59(31+28 1月+2月),89(1月+2月+3月)......+.....365】

我们稍后再解释为什么要用我这种定义方式。

第二步

各类运算符重载

我们首先来看运算符”+”和”+=”

这是一般情况下的+

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++; //判断月数是否大于12 if (tmp._month > 12) { tmp._year++; tmp._month = 1; } } return tmp; }

这是一般情况下的+=

Date& Date::operator+=(int day) { Date ret(*this); ret._day += day; //判断天数是否超越了当月的天数 while (_day > GetMonthDay(_year, _month)) { _day -= GetMonthDay(_year, _month); _month++; //判断月数是否超过了12 if (_month > 12) { _year++; _month = 1; } } } return *this; }

我们可以发现两者其实都用了同一个while循环来判断日期是否合法。

我们可以选择将while循环打包成一个新的函数,也可以选择直接复用

+复用+=

Date Date::operator+(int day) { Date tmp(*this); tmp += day;//直接调用operator的+= return tmp; } 总代码 #define _CRT_SECURE_NO_WARNINGS 1 #include"date.h" inline int GetMonthDay(int year, int month) { static int _monthArray[13] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 }; int day = _monthArray[month]; if (month == 2 && (year % 4 == 0 && year % 100 != 0) || year % 400 == 0) { day = 29; } return day; } Date::Date(int year, int month, int day) { _year = year; _month = month; _day = day; if (!(year >= 0 && month >= 1 && month <= 12 && day > 0 && day <= GetMonthDay(year, month))) { cout << "!legal" << endl; } } Date& Date::operator+=(int day) { if (day < 0) { *this -= -day; } else { _day += day; while (_day > GetMonthDay(_year, _month)) { _day -= GetMonthDay(_year, _month); _month++; if (_month > 12) { _year++; _month = 1; } } } return *this; } Date& Date::operator-=(int day) { if (day < 0) { *this += -day; } else { _day -= day; while (_day <= 0) { if (_month == 1) { --_year; _month = 12; _day += GetMonthDay(_year, _month); } else { --_month; _day += GetMonthDay(_year, _month); } } } return *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++()//前置 { return *this += 1;; } Date Date::operator++(int)//后置 { Date tmp(*this); *this += 1; return tmp; } Date& Date::operator--()//前置 { return *this -= 1; } Date Date::operator--(int)//后置 { Date tmp(*this); *this -= 1; return tmp; } bool Date::operator>(const Date& d) { if (_year > d._year) return true; else if (_year < d._year) return false; else//_year < d._year { if (_month > d._month) return true; else if (_month < d._month) return false; else//_month < d._month { if (_day > d._day) return true; else 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) { if (_year == d._year) { if (_month == d._month) { if (_day == d._day) return true; } } return false; } bool Date::operator!=(const Date& d) { //复用== return !(*this == d); } int Date::operator-(Date d) { int count = 0; Date tmp(*this); if (tmp < d) { while (tmp != d) { ++count; tmp += 1; } } else if (tmp > d) { while (tmp != d) { --count; tmp -= 1; } } return count; }

到此这篇关于C++逐步介绍日期类的使用的文章就介绍到这了,更多相关C++日期类内容请搜索易知道(ezd.cc)以前的文章或继续浏览下面的相关文章希望大家以后多多支持易知道(ezd.cc)!

推荐阅读

    计算机主板BIOS设置详细-BIOS知识

    计算机主板BIOS设置详细-BIOS知识,,什么是电脑BIOS,一般电脑主板已经设置完毕后,电脑就开始按del键进入BIOS。系统启动BIOS,即微机的基本输入

    计算机蓝屏故障的计算机蓝屏解决方案

    计算机蓝屏故障的计算机蓝屏解决方案,,电脑蓝屏电脑故障经常使用电脑的朋友经常遇到,因为电脑蓝屏是一个非常普遍的现象,所以很难预测,什么时

    计算机自动关机的原因是什么

    计算机自动关机的原因是什么,,计算机(计算机),通常称为计算机,是一种用于高速计算的电子计算机。它可以进行数值计算和逻辑计算,还具有存储记忆

    电脑功率计算|电脑功率计算公式

    电脑功率计算|电脑功率计算公式,,电脑功率计算公式  从设计角度出发一般取300w/台基本都可以满足要求,可以从以下几个方面分析一下电脑功

    如何设置计算机视图视图的统一视图

    如何设置计算机视图视图的统一视图,,不知道你是否有这样的使用电脑经验,电脑在不同的文件夹打开,有时这个文件夹是用来查看列表的方式,但是当

    的故障_计算机解决无法打印文档

    的故障_计算机解决无法打印文档,,核心提示:最近,打印机出现了一个奇怪的现象,在打印正常之前,打印机不能打印最近的突然,提示发送打印作业,计算

    PC计算机:AMDCPU核心细节

    PC计算机:AMDCPU核心细节,,核心提示:AthlonXP的核心型athlonxp有4种不同的核心类型,但都有个共同点:他们都使用socketa接口,他们都使用PR标称值

    分析计算机减速的原因

    分析计算机减速的原因,,核心提示:做以上九点,我相信你的爱是快的。当然,如果速度很慢,你应该考虑硬件升级。学习电脑组装,就来吧… 有很多人说