本文主要是介绍第6周项目5-友元类-时间类,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
/*
* Copyright (c) 2015, 烟台大学计算机学院
* All rights reserved.
* 文件名称:test.cpp
* 作 者:姜甜甜
* 完成日期:2015年 4 月14日
* 版 本 号:v1.0
* 问题描述:
*/
#include <iostream>
using namespace std;
class Date; //对Date类的提前引用声明
class Time
{
public:
Time(int,int,int);
void add_a_second(Date &); //增加1秒,1秒后可能会到了下一天,乃到下一月、下一年
void display(Date &); //显示时间,格式:月/日/年 时:分:秒
private:
int hour;
int minute;
int sec;
};
class Date
{
public:
Date(int,int,int);
friend class Time; //Time为Date的友元类
private:
int month;
int day;
int year;
};
Time::Time(int a,int b,int c)
{
hour=a;
minute=b;
sec=c;
}
int re(int m,int y);
void Time::add_a_second(Date & t)
{
++sec;
if(sec>59)
{minute++;sec=0;}
if(minute>59)
{hour++;minute=0;}
if(hour>23)
{t.day++;hour=0;}
int s=re(t.month,t.year);
if(t.day>s)
{
t.month++;
t.day=1;
}
if(t.month>12)
{
t.year++;
t.month=0;
}
}
void Time::display(Date &t)
{
char c='/',b=':';
cout<<t.month<<c<<t.day<<c<<t.year<<" "<<hour<<b<<minute<<b<<sec;
}
Date::Date(int m,int d,int y)
{
month=m;
day=d;
year=y;
}
int re(int m,int y)
{
int d[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};
if((y%4==0&&y%100!=0)||y%400==0)
d[1]++;
return d[m];
}
int main( )
{
Time t1(23,59,32);
// Date d1(12,31,2013);
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);
cout<<endl;
}
return 0;
}
这篇关于第6周项目5-友元类-时间类的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!