日期类Date

#include <iostream>


using namespace std;


//日期是否合法
//日期比较
//两个日期中间差的天数
//日期加上或减去一定的天数后的日期


class Date
{
friend ostream& operator<<(ostream& _cout, const Date& d);
friend istream& operator>>(istream& _cin, Date& d);
public:
Date(int year = 1, int month = 1, int day = 1)
{
if(year>0 && month>0 && month<13 && day>0 && day<32)
{
_year = year;
_month = month;
_day = day;
}
else
cout<<"日期不合法"<<endl;
}
Date(const Date& d)
{
_year = d._year;
_month = d._month;
_day = d._day;
}


    void Display()  
    {  
        cout << _year << "-" << _month << "-" << _day << endl;  
    }


~Date()
{
}

bool operator==(const Date& d)
{
if( _year == d._year && _month == d._month && _day == d._day)
return true;
else
return false;
}


bool operator>(const Date& d)
{
if(_year > d._year)
return false;
else if(_year==d._year && _month>d._month )
return false;
else if(_year==d._year && _month==d._month && _day>d._day)
return false;
else
return true;
}
bool operator>=(const Date& d)
{
return (*this > d) || (*this == d);
}
bool operator<(const Date& d)
{
return !(*this >= d);
}
bool operator<=(const Date& d)
{
return !(*this > d);
}


Date& operator=(const Date &d)        
    {  
        if (this != &d)  
        {  
            this->_year = d._year;  
            this->_month = d._month;  
            this->_day = d._day;  
        }  
        return *this;  
    } 


Date operator+(int days)
{
if(days < 0)
{
return operator-(-days);
}
int a = 0;
int sumDays = _day + days; 
while(sumDays > (a = GetDays(_year, _month)))
{
sumDays -= GetDays(_year, _month);
_month++;
if(_month > 12)
{
_year++;
_month -= 12;
}
else
{
_day = sumDays;
}
}
_day = sumDays;
return *this;
}


    Date& operator+=(int day)           
    {  
        *this = operator+(day);  
        return *this;  
    } 


Date operator-(int days)
{
if(days < 0)
{
return operator+(-days);
}


while(days >= _day)
{
days -= _day;
if(_month == 1)
{
_year--;
_month = 12;
}
else
{
_month--;
}
_day = GetDays(_year, _month);
}
_day -= days;
return *this;
}


Date& operator-=(int day)           
    {  
        *this = operator-(day);  
        return *this;  
    }
Date& operator++()
{
++_day;
if(_day > GetDays(_year, _month))
{
_day -= GetDays(_year, _month);
++_month;
if(_month > 12)
{
_month = 1;
_year++;
}
}
return *this;
}
Date operator++(int)
{
Date temp = *this;
*this = operator++();
return temp;
}


Date& operator--()
{
if (_day > 1)  
        {  
            --_day;  
        }  
        else  
        {  
            if (_month == 1)  
            {  
                --_year;  
                _month = 12;  
                _day = GetDays(_year, _month);  
            }  
            else  
            {  
                --_month;  
                _day = GetDays(_year, _month);  
            }  
        }  
        return *this; 


}
Date operator--(int)
{
Date temp = *this;
*this = operator--();
return temp;
}


int Day_day(Date& d)
{
int days = 0;
int balance = 0;
if(*this > d)
{
Date temp = *this;
*this = d;
d = temp;
}


   if(_year==d._year && _month==d._month)
{
balance = _day - d._day;


}
else if(_year==d._year)
{
balance = (GetDays(d._year, d._month) - d._day) + _day;
}
else
{
d._day = GetDays(d._year, d._month) - d._day;//计算大的日期距离当年年底的天数
while((++d._month)<=12)
d._day += GetDays(d._year, d._month);
while(--_month)//计算小的年份距离年初的天数
_day += GetDays(_year, _month);

while( (++d._year)<_year )//计算两个日期间隔的年份的天数
{
if(IsLeapYear(d._year))
days += 366;
else
days += 365;
}


balance = d._day + _day + days; //间隔天数
}
}
return balance;
}
private:
bool IsLeapYear(int year)               
    {  
        if (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0))  
            return true;  
        else  
            return false;  
    }  
  
    int GetDays(int year, int month)             
    {  
        int month_Array[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };  
  
        int day = month_Array[month - 1];  
  
        if (month == 2 && IsLeapYear(year))  
        {  
            day += 1;  
        }  
  
        return day;  
    }


int _year;
int _month;
int _day;
};


ostream& operator<<(ostream& _cout, const Date& d)
{
_cout<<d._year<<"-"<<d._month<<"-"<<d._day;
return _cout;
}


istream& operator>>(istream& _cin, Date& d)
{
_cin>>d._year>>d._month>>d._day;
return _cin;
}


void FunTest()
{


//Date d1(2016, 0, 23 );
//d1.Display();


//Date d2;
//cin>>d2;
//cout<<d2<<endl;
/*
    Date d1(2016, 10, 23 );
Date d2(2016, 10, 1 );
bool b = d1 == d2;
b = d1>d2;
b = d1<=d2;
cout<<b<<endl;


Date d3;
d3 = d1;
d3.Display();
*/


/*Date d4(2016, 10, 23 );
Date d5 = d4+10;
d5 = d4++;
d5 = ++d4;
d5.Display();*/
/*
Date d4(2016, 10, 23 );
Date d5 = d4-30;
d5 = d4--;
d5 = --d4;
d5.Display();
*/
/*
Date d4(2016, 10, 23 );
d4 += 10;
d4 -= 20;
d4.Display();
*/
    Date d6(2016, 10, 24 );
Date d7(2015, 10, 24 );
cout<<d6.Day_day(d7)<<endl;


}


int main()
{
FunTest();


system("pause");
return 0;


}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/459476.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Linux下编译安装Apache httpd 2.4

Apache是世界使用排名第一的Web服务器软件。它可以运行在几乎所有广泛使用的计算机平台上&#xff0c;由于其跨平台和安全性被广泛使用&#xff0c;是最流行的Web服务器端软件之一。当前Apache版本为2.4&#xff0c;本文主要描述基于CentOS 6.5以源码方式安装Apache httpd。 一…

选取硬币问题

有1元&#xff0c;5元&#xff0c;10元&#xff0c;50元&#xff0c;100元&#xff0c;500元的硬币各c0,c1,c2,c3,c4, c5枚 现在要使用这些硬币支付n元&#xff0c;问最少需要多少枚硬币&#xff0c;假设至少存在一种方案。 应该尽可能使用500元的&#xff0c;然后再使用100元的…

SAP OBYC自动记账的实例说明 +VALUE STRING

对Value String定义&#xff1a;定义了一系列的步骤优先顺序&#xff0c;每一个步骤都连接到不同的过账事务码&#xff0c;而这个顺序本身就称作价值串。价值串你可以看作是一种记账的规则&#xff0c;为物料移动或者发票校验包含了一系列的科目分配特征。并且物料移动的科目确…

C++ 继承解析

继承 1、概念&#xff1a; 继承(inheritance)机制是面向对象程序设计使代码可以复用的最重要的手段&#xff0c;它允许程序员在保持原有类特性的基础上进行扩展&#xff0c;增加功能。这样产生新的类&#xff0c;称派生类。继承呈现了面向对象程序设计的层次结构&#xff0c;体…

javascript window.open

翻译原文&#xff1a;open methodOpens a new window and loads the document specified by a given URL.Navigates the app window to the specified location.Syntaxvar retval window.open(url, name, features, replace);Parametersurl [in, optional] Type: String …

[傅里叶变换及其应用学习笔记] 九. 继续卷积的讨论

这份是本人的学习笔记&#xff0c;课程为网易公开课上的斯坦福大学公开课&#xff1a;傅里叶变换及其应用。 卷积在滤波中的应用 浑浊度&#xff08;Turbidity&#xff09;研究是关于测量水的清澈度的研究。大致方法是把光传感器放置到深水区域&#xff0c;然后测量光线的昏暗程…

C++多态相关关问题及虚表剖析

关于C多态的问题&#xff1a;&#xff08;基于Visual Studio 2012编译器&#xff09; 一、多态引入 1、对象的类型&#xff1a; &#xff08;1&#xff09; 静态的类型&#xff1a;对象声明时的类型&#xff0c;在编译的时候确定 &#xff08;2&#xff09; 动态的类型&…

C++调用约定

<div class"markdown_views"><p>有一定C开发经验的人一定对”__cdecl、__stdcall、__fastcall”肯定不陌生吧&#xff01;但你真正理解了吗&#xff1f;是的&#xff0c;我曾在这采了无数个坑&#xff0c;栽了无数个跟头&#xff0c;终于忍无可忍要把它总…

CSS中的特殊的选择器

/*表示div盒子中的P标签*/ div P{} /*表示div盒子中除第一个P之外的都要添加样式*/ div pp{} /*表示div盒子中从第三个p开始都要添加样式*/转载于:https://www.cnblogs.com/Dream-Seeker/p/4454325.html

添加文字和水印

1.加文字-(UIImage *)addText:(UIImage *)img text:(NSString *)text1{//get image width and heightint w img.size.width;int h img.size.height;CGColorSpaceRef colorSpace CGColorSpaceCreateDeviceRGB();//create a graphic context with CGBitmapContextCreateCGCont…

C++动态绑定及返回类型协变

C多态之动态绑定&#xff1a; 1、概念&#xff1a;在程序执行期间(非编译期)判断所引用对象的实际类型&#xff0c;根据其实际类型调用相应的方法。 使用virtual关键字修饰类的成员函数时&#xff0c;指明该函数为虚函数&#xff0c;派生类需要重新实现&#xff0c;编译器将实…

使用ucontext组件实现的coroutine代码分析

coroutine一般翻译过来就是协程&#xff0c;类似于线程可以切换&#xff0c;而跟线程是由操作系统调度器来实现切换不一样&#xff0c;协程由用户程序自己调度进行切换。我以前也看过协程相关的内容&#xff0c;但没有自己去实现过。最近搞OpenStack&#xff0c;OpenStack各个模…

C++模板剖析:函数模板、类模板解析

C中关于模板&泛型编程问题&#xff1a; 问题引入&#xff1a;何编写一个通用加法函数&#xff1f; &#xff08;1&#xff09;使用函数重载&#xff0c;针对每个所需相同行为的不同类型重新实现它 int Add(const int &_iLeft, const int&_iRight) { return (_iL…

Android Studio 1.1的安装和遇到的坑

Google的Android Studio 出1.0稳定版本也有很久的时间了&#xff0c;一直喜欢Jetbrains公司的IDE&#xff0c;不同语言的IDE操作习惯都比较统一。 而Android Studio 是基于IntelliJ IDEA的社区版开发的 &#xff0c;怎么也要尝尝鲜才行。 今天安装了下&#xff0c;被几个小坑卡…

Linux:Access time、 Modify time 、Change time 和 find 命令使用解析

一、Access time 、Modify time 、Change time 1、含义&#xff1a; Access&#xff1a;是指“访问时间” 对于文件&#xff0c;用编辑器打开file&#xff0c;或使用cat more less grep sed 等等命令读取文件内容&#xff0c;以及使用file cp命令操作文件&#xff0c;或执行…

[HAOI2015]T2

【题目描述】 有一棵点数为N的树&#xff0c;以点1为根&#xff0c;且树点有边权。然后有M个操作&#xff0c;分为三种&#xff1a; 操作1&#xff1a;把某个节点x的点权增加a。 操作2&#xff1a;把某个节点x为根的子树中所有点的点权都增加a。 操作3&#xff1a;询问某个节点…

BestCoder Round #39 解题报告

现场只做出前三题w 不过不管怎样这既是第一次认真打BC 又是第一次体验用在线编译器调代码 订正最后一题花了今天一整个下午&#xff08;呜呜 收获还是比较大的^_^ Delete wld有n个数(a1,a2,...,an)&#xff0c;他希望进行k次删除一个数的操作&#xff0c;使得最后剩下的n−k个数…

linux :vim 实现命令行下输出进度条

1、 进度条原理&#xff1a; 进度条的的动态增长是利用人的视觉短暂停留效果的&#xff0c;不断从输出缓冲区刷新出相同的内容&#xff0c;在肉眼看来进度条在不断的增长。 在显示器上先输出[# ][%1] 刷新一次之后&#xff0c; …

***jquery选择器 之 获取父级元素、同级元素、子元素

一、获取父级元素1、 parent([expr]): 获取指定元素的所有父级元素 <div id"par_div"><a id"href_fir" href"#">href_fir</a><a id"href_sec" href"#">href_sec</a><a id"href_thr&q…