实现一个CDate类
创新互联公司拥有10余年成都网站建设工作经验,为各大企业提供成都网站制作、网站建设服务,对于网页设计、PC网站建设(电脑版网站建设)、APP应用开发、wap网站建设(手机版网站建设)、程序开发、网站优化(SEO优化)、微网站、主机域名等,凭借多年来在互联网的打拼,我们在互联网网站建设行业积累了很多网站制作、网站设计、网络营销经验,集策划、开发、设计、营销、管理等网站化运作于一体,具备承接各种规模类型的网站建设项目的能力。
class CDate { public: CDate(int year = 1900, int month = 1, int day = 1) : _year(year) , _month(month) , _day(day) { if (!(_year >= 1900 && (_month > 0 && _month < 13) && (_day > 0 && _day <= _GetMonthDay(_year, _month)))) { _year = 1900; _month = 1; _day = 1; } } bool IsLeap(int year)//判断闰年 { if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)) { return true; } return false; } private: int _GetMonthDay(int year, int month) { int days[] = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; if (IsLeap(year) && month == 2)//闰年并且月份为2 { days[month] += 1; } return days[month]; } private: int _year; int _month; int _day; };
完成CDate类的几个函数
#includeusing namespace std; class CDate { public: CDate(int year = 1900, int month = 1, int day = 1) : _year(year) , _month(month) , _day(day) { if (!(_year >= 1900 && (_month > 0 && _month < 13) && (_day > 0 && _day <= _GetMonthDay(_year, _month)))) { _year = 1900; _month = 1; _day = 1; } } //比较日期 bool operator<(const CDate& 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 (const CDate& d) { return (!(*this < d || *this == d)); } //日期加法 CDate operator+(int day) { if (day < 0) { return *this - (0 - day); } CDate temp(*this); temp._day += day; while (temp._day > _GetMonthDay(temp._year, temp._month)) { temp._day -= _GetMonthDay(temp._year, temp._month); if (temp._month == 12) { temp._year++; temp._month = 1; } else { temp._month++; } } return temp; } //日期减法 CDate operator-(int day) { if (day < 0) { return *this + (0 - day); } CDate temp(*this); temp._day -= day; while (temp._day <= 0) { if (temp._month == 1) { temp._year--; temp._month = 12; } else { temp._month--; } temp._day += _GetMonthDay(temp._year, temp._month); } return temp; } //前置加加 CDate& operator++() { *this = *this + 1; return *this; } //后置加加 CDate operator++(int) { CDate temp(*this); *this = *this + 1; return temp; } //前置减减 CDate& operator--() { *this = *this - 1; return *this; } //后置减减 CDate operator--(int) { CDate temp(*this); *this = *this - 1; return temp; } //两者作差 int operator-(const CDate& d) { CDate min(*this); CDate max(d); if (min > max) { min = d; max = *this; } int count = 0; while (min < max) { min = min + 1; count++; } return count; } bool IsLeap(int year) { if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)) { return true; } return false; } private: int _GetMonthDay(int year, int month) { int days[] = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; if (IsLeap(year) && month == 2)//闰年并且月份为2 { days[month] += 1; } return days[month]; } friend ostream& operator<<(ostream& _cout, const CDate& d) { _cout << d._year << "-" << d._month << "-" << d._day; return _cout; } private: int _year; int _month; int _day; }; int main() { CDate d(1992, 1, 26); cout << d + 4 << endl; cout << d + 34 << endl; cout << d + 10000 << endl; cout << d - 26 << endl; CDate d1(1992, 1, 1); cout << d - d1 << endl; cout << d1 - d << endl; cout << d1++ << endl; cout << ++d1 << endl; system("pause"); return 0; }