第七周项目二 利用友元类进行对时间与日期的修改

/*Copyright (c)2016,烟台大学计算机与控制工程学院 
 *All rights reserved. 
 *文件名称:main.cpp 
 *作    者:舒文超 
 *完成日期:2016年4月10日 
 *版 本 号:v1.0 
 * 
 *问题描述:利用友元类进行对时间与日期的修改 
 */ 
#include<iostream>
using namespace std;
class Date; //对Date类的提前引用声明
class Time
{
public:
    Time(int h,int m,int s):hour(h),minute(m),sec(s){}
    void add_a_second(Date &);  //增加1秒,1秒后可能会到了下一天,乃到下一月、下一年
    void display(Date &);  //显示时间,格式:月/日/年 时:分:秒
private:
    int hour;
    int minute;
    int sec;
};
class Date
{
public:
    Date(int m,int d,int y):year(y),month(m),day(d){}
    friend class Time ; //Time为Date的友元类
private:
    int month;
    int day;
    int year;
};
void Time::display(Date &d)
{
    cout<<d.month<<"/"<<d.day<<"/"<<d.year<<" "<<hour<<":"<<minute<<":"<<sec<<endl;
}
void Time::add_a_second(Date &t)
{
    sec++;
    if(sec>=60)
    {
        minute=minute+(sec/60);
        sec=sec%60;
        if(minute>=60)
        {
            hour=hour+(minute/60);
            minute=minute%60;
            if(hour>=24)
            {
                t.day=t.day+(hour/24);
                hour=hour%24;
                switch(t.month)
                {
                case 1:
                case 3:
                case 5:
                case 7:
                case 8:
                case 10:
                case 12:
                    if(t.day>31)
                    {
                        t.month=t.month+(t.day/31);
                        t.day%=31;
                        if(t.month>12)
                        {
                            t.year=t.year+(t.month/12);
                            t.month%=12;
                        }
                    }
                    break;
                case 4:
                case 6:
                case 9:
                case 11:
                    if(t.day>30)
                    {
                        t.month=t.month+(t.day/30);
                        t.day%=30;
                        if(t.month>12)
                        {
                            t.year=t.year+(t.month/12);
                            t.month%=12;
                        }
                    }
                    break;
                case 2:
                    if(((t.year%4==0&&t.year%100!=0)||t.year%400==0))
                    {
                        if(t.day>29)
                        {
                            t.month=t.month+(t.day/29);
                            t.day%=29;
                            if(t.month>12)
                            {
                                t.year=t.year+(t.month/12);
                                t.month%=12;
                            }
                        }
                    }
                    else
                    {
                        if(t.day>28)
                        {
                            t.month=t.month+(t.day/28);
                            t.day%=28;
                            if(t.month>12)
                            {
                                t.year=t.year+(t.month/12);
                                t.month%=12;
                            }
                        }
                    }
                }
            }
        }
    }
}
int main( )
{
    Time t1(23,59,32);
    Date d1(2,28,2013);   //测试时,再试试Date d1(2,28,2013)会如何
    for(int i=0; i<=100; i++)
    {
        t1.add_a_second(d1);
        t1.display(d1);
    }
    return 0;
}


你可能感兴趣的:(第七周项目二 利用友元类进行对时间与日期的修改)