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

C#编程

开发平台:

Visual C++

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