当前位置: 首页 > 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/42338.html

相关文章:

  • 陕西省环保厅建设备案网站网络推广费用预算表
  • 靖江市属于哪里有做网站的口碑营销的步骤
  • 做网站彩票代理犯法吗兔子bt樱桃搜索磁力天堂
  • 镇江网站建设价位许昌网络推广公司
  • 做文学网站需要石家庄疫情最新消息
  • 厦门响应式网站制作如何做好百度推广
  • 如何做网站流量报告推广app是什么工作
  • 做亚马逊一个月挣10万seo排名优化方法
  • 个人网站建设赚取流量费网络seo关键词优化技术
  • 教做美食的网站百度号注册官网
  • 福州市城乡建设发展总公司网站东莞seo计费管理
  • 网站建设是前端吗南京网页搜索排名提升
  • 展馆网站建设百度推广客户端app下载
  • wordpress图片乱码上海高端seo公司
  • 厂房装修多少钱一个平方米北京seo培训
  • 我是怎么做网站架构的汕头seo全网营销
  • 云盘网站建设逆冬seo
  • 无锡装饰网站建设必应搜索推广
  • 素材网站怎么推广代写文章兼职
  • 湛江手机网站建设网络营销的原理
  • oss做下载网站如何注册域名网站
  • 网站空间怎样设置用户名和密码网店营销策划方案
  • 网站搭建和网站开发网站排名优化服务
  • 搭设企业网站教程最近新闻报道
  • 中国建设银行重庆网站上海seo公司哪家好
  • 茂名企业建站程序谷歌seo排名工具
  • 建设优秀企业网站山东网络推广网站
  • centos wordpress 空白重庆网站seo外包
  • 做设计的搜素材上什么网站好官网优化 报价
  • 新手如何自己做网站app2023年新闻小学生摘抄