这篇文章主要介绍了C++如何实现日期类,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
创新互联建站服务项目包括泸水网站建设、泸水网站制作、泸水网页制作以及泸水网络营销策划等。多年来,我们专注于互联网行业,利用自身积累的技术优势、行业经验、深度合作伙伴关系等,向广大中小型企业、政府机构等提供互联网行业的解决方案,泸水网站推广取得了明显的社会效益与经济效益。目前,我们服务的客户以成都为中心已经辐射到泸水省份的部分城市,未来相信会继续扩大服务区域并继续获得客户的支持与信任!具体内容如下
#include#include 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); } // 重载取地址符号 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 << "------"< 感谢你能够认真阅读完这篇文章,希望小编分享的“C++如何实现日期类”这篇文章对大家有帮助,同时也希望大家多多支持创新互联建站,关注创新互联网站建设公司行业资讯频道,更多相关知识等着你来学习!
另外有需要云服务器可以了解下创新互联建站www.cdcxhl.com,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
网页题目:C++如何实现日期类-创新互联
文章来源:http://bzwzjz.com/article/dcsihh.html