温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

完成CDate类的几个函数

发布时间:2020-06-27 12:25:11 来源:网络 阅读:244 作者:追梦途中 栏目:编程语言

实现一个CDate类

 

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类几个函数

#include <iostream>
using 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<d._day)
{
return true;
}
 
return false;
}
bool operator==(const CDate& d)
{
return (_year == d._year &&
_month == d._month &&
_day == d._day);
}
bool operator>(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;
}

完成CDate类的几个函数

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI