资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

用c++实现的简单的日期类

     自己写的这个日期类实现了简单的一些日期可能会用到的功能,

网站建设哪家好,找创新互联!专注于网页设计、网站建设、微信开发、微信小程序、集团企业网站建设等服务项目。为回馈新老客户创新互联还提供了永和免费建站欢迎大家使用!

比如加减某一个日期等等,详细的已在代码里面标注出来了。

#include
using namespace std;

class Date
{
public:
 Date(int year = 1900, int month = 1, int day = 1)
  :_year(year)    //初始化列表
     ,_month(month)
     ,_day(day)
 {
  if (year < 1900
   ||month < 1 || month > 12
   || day < 1 || day > GetMonthDay(year,month))
  {
   cout << "Invalid Date" << endl;
  }
 }

 int GetMonthDay(int year, int month)
 {
  int monthArray[12] = { 31, 28, 31, 30, 31,
   30, 31, 31, 30, 31, 30, 31 };
  if (IsLeapYear(year)&&month==2)
  {
   return monthArray[month - 1] + 1;
  }
  return monthArray[month - 1];
 }

 bool IsLeapYear(int year)
 {
  return year % 400 == 0 || year % 4 == 0
   && year % 100 != 0;
 }
 
 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);

   if (tmp._month == 12)
   {
    tmp._year += 1;
    tmp._month = 1;
   }
   else
   {
    tmp._month += 1;
   }

  }
  return tmp;
 }

 Date& operator+=(int day)     
 {
  this->_day += day;
  while (this->_day > GetMonthDay(this->_year, this->_month))
  {
   this->_day -= GetMonthDay(this->_year, this->_month);

   if (this->_month == 12)
   {
    this->_year += 1;
    this->_month = 1;
   }
   else
   {
    this->_month += 1;
   }

  }
  return *this;
 }

 Date operator-(int day)    //减一个天数
 {
  Date tmp(*this);
  tmp._day -= day;
  while (tmp._day < 0)
  {
   if (tmp._month == 1)
   {
    tmp._year -= 1;
    tmp._month = 12;
    tmp._day += GetMonthDay(tmp._year, tmp._month);
   }
   else
   {
    tmp._month -= 1;
    tmp._day += GetMonthDay(tmp._year, tmp._month);
   }

  }
  return tmp;
 }

 Date operator++()  //前置自增
 {
  *this += 1;
  return *this;
 }

 bool operator==(const Date& d)   //测试日期相等
 {
  return _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 !(_year < d._year&&
   _month < d._month&&
   _day < d._day);
 }

 int operator-(const Date& d)   //一个日期减一个日期
 {
  Date tmp1 = d;
  Date tmp2 = *this;

  int count = 0;
  if (tmp2 < tmp1)
  {
   Date rev;
   rev = tmp2;
   tmp2 = tmp1;
   tmp1 = rev;
  }

  while (tmp2 != tmp1)
  {
   count++;
   ++tmp1;
  }

  return count;
 }

 void Display()
 {
  cout << _year << "-" << _month << "-" << _day << endl;
 }

private:
 int _year;
 int _month;
 int _day;
};

void Test1() //测试加减某一个天数
{
 int day;
 Date d1(2015,3,1);
 d1.Display();
 cin >> day;
 //(d1 + day).Display();
 (d1 - day).Display();
}

void Test2()
{
 Date d1(2015, 2, 28);
 //d1.Display();

 Date d2(2015, 2, 28);
 cout << (d1 != d2) << endl;
 //(d1++).Display();
 
}

void Test3()
{
 Date d1(2004, 2, 1);
 Date d2(2004, 3, 1);
 
 int ret = d1 - d2;
 cout << ret << endl;
}

int main()
{
 //Test1();
 //Test2();
 Test3();
 return 0;
}


网站题目:用c++实现的简单的日期类
当前链接:http://cdkjz.cn/article/igphge.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

业务热线:400-028-6601 / 大客户专线   成都:13518219792   座机:028-86922220