C++实现日期类(Date)
来源:本站原创|时间:2020-01-10|栏目:C语言|点击: 次
本文实例为大家分享了C++实现日期类的具体代码,供大家参考,具体内容如下
#include<iostream> #include<stdlib.h> using namespace std; class Date { public: //构造函数 Date(int year = 1900, int month = 1, int day = 1) :_year(year) , _month(month) , _day(day) { if (!IsInvalidDate(_year, _month, _day)) { _year = 1900; _month = 1; _day = 1; } } //拷贝函数 Date(const Date& d) : _year(d._year) , _month(d._month) , _day(d._day) {} //析构函数 ~Date() {} //判断是不是闰年 bool IsLeapYear(int year) { if ((year % 400 == 0) || ((year % 4 == 0) && (year % 100 != 0)) ) { return true; } return false; } //判断是不是合法日期 bool IsInvalidDate(int year, int month, int day) { if ((year < 1) || (month < 0 || month >12) || (day < 0 || day > YearsOfMonth(year, month))) { return false; } return true; } //判断当前月份多少天 int YearsOfMonth(int year, int month) { int day; int days[13] = {0,31,28,31,30,31,30,31,31,30,31,30,31}; day = days[month]; if (month == 2 && IsLeapYear(year)) { day += 1; } return day; } //修正日期 Date ToCorrect(Date &d) { while (d._day > YearsOfMonth(d._year, d._month) || d._day <= 0) { if(d._day <= 0) { d._day += YearsOfMonth(d._year,( d._month - 1)); if (d._month == 1) { d._month = 12; d._year--; } else { d._month--; } } else { d._day -= YearsOfMonth(d._year, d._month); if (d._month == 12) { d._year++; d._month = 1; } else { d._month++; } } } return d; } // 当前日期days天后是什么日期? Date operator+(int days) { Date tmp(*this); tmp._day += days; ToCorrect(tmp); return tmp; } // 当前日期days天前是什么日期? Date operator-(int days) { Date tmp(*this); tmp._day -= days; ToCorrect(tmp); return tmp; } // 日期比大小 bool operator>(const Date& d) { return ( _year > d._year || (_year == d._year && _month > d._month) || (_year == d._year && _month == d._month && _day > d._day)); } bool operator<(const Date& d) { return (_year < d._year || (_year == d._year && _month < d._month) || (_year == d._year && _month == d._month && _day < d._day)); } bool operator==(const Date& d) { return ((_year == d._year) && (_month == d._month) && (_day == d._day)); } bool operator!=(const Date& d) { return !(*this == d); } bool operator>=(const Date &d) { return !(*this<d); } bool operator<=(const Date &d) { return !(*this>d); } // 重载取地址符号 Date* operator&() { } // 前置++ Date& operator++() { (*this)++; return *this; } // 后置++ Date operator++(int)//通过返回值和传参区别前置和后置++ { Date tmp(*this); (*this) = (*this) + 1; return tmp; } // 前置-- Date& operator--() { (*this)--; return *this; } // 后置-- Date operator--(int) { Date tmp(*this); (*this)--; return tmp; } void Display() { cout << _year << "-" << _month << "-" << _day << endl; } private: int _year; int _month; int _day; }; int main() { Date d(2018, 9, 9); d.Display(); Date d1 = d + 50; d1.Display(); d1 =d1 - 50; d1.Display(); cout << "------"<<endl; cout << "前置++" << endl; d1.Display(); (++d1).Display(); d1.Display(); cout << "后置++" << endl; d1.Display(); (d1++).Display(); d1.Display(); cout << "------" << endl; system("pause"); return 0; }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。
您可能感兴趣的文章
- 04-02c语言没有round函数 round c语言
- 01-10数据结构课程设计-用栈实现表达式求值的方法详解
- 01-10使用OpenGL实现3D立体显示的程序代码
- 01-10深入理解C++中常见的关键字含义
- 01-10求斐波那契(Fibonacci)数列通项的七种实现方法
- 01-10C语言 解决不用+、-、&#215;、&#247;数字运算符做加法
- 01-10使用C++实现全排列算法的方法详解
- 01-10c++中inline的用法分析
- 01-10用C++实现DBSCAN聚类算法
- 01-10深入全排列算法及其实现方法
阅读排行
本栏相关
- 04-02c语言函数调用后清空内存 c语言调用
- 04-02func函数+在C语言 func函数在c语言中
- 04-02c语言的正则匹配函数 c语言正则表达
- 04-02c语言用函数写分段 用c语言表示分段
- 04-02c语言中对数函数的表达式 c语言中对
- 04-02c语言编写函数冒泡排序 c语言冒泡排
- 04-02c语言没有round函数 round c语言
- 04-02c语言分段函数怎么求 用c语言求分段
- 04-02C语言中怎么打出三角函数 c语言中怎
- 04-02c语言调用函数求fibo C语言调用函数求
随机阅读
- 04-02jquery与jsp,用jquery
- 01-10C#中split用法实例总结
- 01-10SublimeText编译C开发环境设置
- 01-10delphi制作wav文件的方法
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 01-11ajax实现页面的局部加载
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 01-10使用C语言求解扑克牌的顺子及n个骰子