当前位置: 首页 > wzjs >正文

武汉骑士网络做网站中央新闻频道直播今天

武汉骑士网络做网站,中央新闻频道直播今天,网店运营培训哪里好,网站收录了但是搜索不到hellohello,又见面啦! 既然我们已经学过类和对象了,那么我们也可以进行这个日期类的实现了! 这就是我们接下来的任务哦~ 先做然后看看我们方法有什么不同吧~ class Date{public:// 获取某年某月的天数int GetMonthDay(int year, int mont…

hellohello,又见面啦!

既然我们已经学过类和对象了,那么我们也可以进行这个日期类的实现了!

这就是我们接下来的任务哦~

先做然后看看我们方法有什么不同吧~

class Date{public:// 获取某年某月的天数int GetMonthDay(int year, int month);// 全缺省的构造函数Date(int year = 1900, int month = 1, int day = 1);// 拷贝构造函数// d2(d1)Date(const Date& d);// 赋值运算符重载// d2 = d3 -> d2.operator=(&d2, d3)Date& operator=(const Date& d);// 析构函数~Date();// 日期+=天数Date& operator+=(int day);// 日期+天数Date operator+(int day);// 日期-天数Date operator-(int day);// 日期-=天数Date& operator-=(int day);// 前置++Date& operator++();// 后置++Date operator++(int);// 后置--Date operator--(int);// 前置--Date& operator--();// >运算符重载bool operator>(const Date& d);// ==运算符重载bool operator==(const Date& d);// >=运算符重载bool operator >= (const Date& d);// <运算符重载bool operator < (const Date& d);// <=运算符重载bool operator <= (const Date& d);// !=运算符重载bool operator != (const Date& d);// 日期-日期 返回天数int operator-(const Date& d);private:int _year;int _month;int _day;};
// 全缺省的构造函数
Date(int year = 1900, int month = 1, int day = 1)
{_year = year;_month = month;_day = day;
}
// 拷贝构造函数
Date(const Date& d)
{_year = d._year;_month = d._month;_day = d._day;
}
Date& operator=(const Date& d)
{_year = d._year;_month = d._month;_day = d._day;return *this;
}
// 析构函数~Date()
{_year=0;_month=0;_day=0;
}
int Date::GetMonthDay(int year, int month)
{assert(month > 0 && month < 13);//防止用户输入错误的月份int MonthArr[13] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 };//集装成一个数组,不用复杂的判断啦~if ((month == 2) && ((year % 4 == 0) && (year % 100 != 0) ||(year % 400 == 0)))return  29;elsereturn MonthArr[month];}

Date& Date::operator+=(int day)//自身被改变
{this->_day += day;while (this->_day>GetMonthDay(this->_year, this->_month)){this->_day -= GetMonthDay(this->_year,this->_month);this->_month++;if (this->_month > 12){this->_month = 1;this->_year++;}}return *this;
}

跟+=没什么大区别 ,不过我们还可以通过+=构造+

Date 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);tmp._month++;if (tmp._month > 12){tmp._month = 1;tmp._year++;}}return tmp;//由于是函数局部域创建的变量,出了函数就会被销毁,所以不能用引用作为返回值
}
Date Date::operator+(int day)//不改变自身
{Date tmp(*this);tmp += day;return tmp;//由于是函数局部域创建的变量,出了函数就会被销毁,所以不能用引用作为返回值
}
Date& Date:: operator-=(int day)
{_day -= day;while (_day < 0){_month--;if (_month == 0){_month = 12 ;_year--;}_day += GetMonthDay(_year, _month);}return *this;
}

同理,我们也能用-=构造- 

Date Date :: operator-(int day)
{Date tmp(*this);tmp -= day;return tmp;
}
Date& Date::operator++()
{*this+=1;return *this;
}
Date Date::operator++(int)
{Date tmp(*this);*this += 1;return tmp;
}
Date Date::operator--(int)
{Date tmp(*this);*this -= 1;return tmp;
}Date& Date::operator--()
{*this -= 1;return *this;
}
bool Date::operator>(const Date& d)
{if (_year>d._year)return true;else if (_year == d._year){ if(_month>d._month)return true;}else if(_month == d._month){ if (_day> d._day)return true;}elsereturn false;
}
bool Date::operator==(const Date& d)
{if(_year == d._year&& _month == d._month&&_day == d._day)return true;elsereturn false;}
bool Date::operator >= (const Date& d)
{if(*this > d || *this == d )return true;elsereturn false;
}bool Date::operator < (const Date& d)
{if(!((*this > d)&& (*this == d)))return true;elsereturn false;
}
bool Date::operator <= (const Date& d)
{if (*this < d || *this == d)return true;elsereturn false;
}
bool Date::operator != (const Date& d)
{if(!(*this==d))return true;elsereturn false;
}

日期减日期

int Date::operator-(const Date& d)
{int flag = 1;if (*this < d){flag = -1;}Date tmp(d);int count=0;while (tmp < *this){tmp++;count++;while (tmp._day > GetMonthDay(tmp._year, tmp._month)){tmp._day -= GetMonthDay(tmp._year, tmp._month);tmp._month++;if (tmp._month > 12){tmp._month = 1;tmp._year++;}}}return flag*count;
}

http://www.dtcms.com/wzjs/109054.html

相关文章:

  • 谁做的怀来吧网站看广告收益的正规平台
  • 网站建设技术方面的论文广告推广 精准引流
  • 什么样的企业要做网站企业网络推广计划
  • 商丘市网站建设公司职业培训机构有哪些
  • 安装了lnmp怎么做网站上海网站营销推广
  • 网站做非经营性广告需备案安徽企业网站建设
  • 如何做彗聪网站呢seo搜索引擎优化实训报告
  • 做简历的什么客网站公司网址
  • 龙城建设网站公司网络推广视频
  • 微信微网站制作教程百度关键词优化推广
  • 网站制作联盟应用市场
  • 海淀区住房和城乡建设委员会官方网站网络广告营销成功案例
  • 西宁做腋臭哪里北大DE网站合肥seo排名优化
  • 查公司信息在哪里查网站推广和seo
  • 中国手工活加工网官网专业网站推广优化
  • 网站设计与规划作业如何交换友情链接
  • 购物网站建设 属于信息系统管理与设计么付费推广外包
  • 短视频变现的15种方法如何推广seo
  • 网站开发毕设设计论文seo营销网站的设计标准
  • 程序员 修电脑 做网站网络营销常用的工具
  • 网站程序开发后怎么上线专业的网站优化公司
  • 网站开发最合适的搭配网站快速排名公司
  • 网站开发课程内部培训广州seo排名优化公司
  • 从0开始做网站网站收录查询爱站
  • 漯河做网站的公司百度刷排名优化软件
  • 巴中网站制作公司关键词林俊杰mp3免费下载
  • 专做水果的网站竞价sem托管
  • 做网站 (公司)网站建设是干什么的
  • 网站开发相关期刊网站建设山东聚搜网络
  • 中国手表网站成都自动seo