date.h
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // date.h
  3. // class date with year-month-day version
  4. //=====================================
  5. #include<iostream>
  6. using namespace std;
  7. //-------------------------------------
  8. class Date{
  9.   int year, month, day;
  10. protected:
  11.   int ymd2i()const;
  12.   void i2ymd(int n);
  13.   void print(ostream& o)const;
  14.   static const int tians[];
  15.   bool isLeapYear()const{ return !(year%4)&&(year%100)||!(year%400); }
  16. public:
  17.   Date(const string& s);
  18.   Date(int n=1){ i2ymd(n); }
  19.   Date(int y, int m, int d):year(y),month(m),day(d){}
  20.   Date operator+(int n)const{ return Date( ymd2i() + n ); }
  21.   Date& operator+=(int n){ i2ymd(ymd2i()+n); return *this; }
  22.   Date& operator++(){ return *this +=1; }
  23.   int operator-(Date& d)const{ return ymd2i() - d.ymd2i(); }
  24.   friend ostream& operator<<(ostream& o, const Date& d);
  25. };//-----------------------------------
  26.