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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // date.cpp
  3. //=====================================
  4. #include"date.h"
  5. #include<exception>
  6. using namespace std;
  7. //-------------------------------------
  8. void Date::init(int y, int m, int d)throw(out_of_range){
  9.   if(y>5000 || y<1 || m<1 || m>12 || d<1 || d>31) throw out_of_range("rangeError");
  10.   year=y, month=m, day=d;
  11. }//------------------------------------
  12. Date::Date(const string& s)throw(out_of_range){
  13.   int y = atoi(s.substr(0,4).c_str());
  14.   int m = atoi(s.substr(5,2).c_str());
  15.   int d = atoi(s.substr(8,2).c_str());
  16.   init(y,m,d);
  17. }//------------------------------------
  18. Date::Date(int y, int m, int d)throw(out_of_range){ init(y,m,d); }
  19. //-------------------------------------
  20. bool Date::isLeapYear()const{
  21.   return (year % 4==0 && year % 100 )|| year % 400==0;
  22. }//------------------------------------
  23.