/* (程序头部注释开始)
* 程序的版权和版本声明部分
* Copyright (c) 2011, 烟台大学计算机学院学生
* All rights reserved.
* 文件名称:
* 作 者: 李超
* 完成日期: 2012 年 4 月 9 日
* 版 本 号: 01.08.02
* 对任务及求解方法的描述部分
* 输入描述:
* 问题描述: 实现Time类中运算符重载,如判断两个时间点大小,两时间差,两时间和,时间的自加、自减等
* 程序输出:
* 程序头部的注释结束
主函数CTime.cpp
* 程序的版权和版本声明部分
* Copyright (c) 2011, 烟台大学计算机学院学生
* All rights reserved.
* 文件名称:
* 作 者: 李超
* 完成日期: 2012 年 4 月 9 日
* 版 本 号: 01.08.02
* 对任务及求解方法的描述部分
* 输入描述:
* 问题描述: 实现Time类中运算符重载,如判断两个时间点大小,两时间差,两时间和,时间的自加、自减等
* 程序输出:
* 程序头部的注释结束
*/
头文件CTime.h
#include <iostream>
using namespace std;
class CTime
{
private:
unsigned short int hour; // 时
unsigned short int minute; // 分
unsigned short int second; // 秒
public:
CTime(int h=0,int m=0,int s=0):hour(h), minute(m),second(s) {};
void setTime(int h,int m,int s);
void display();
//比较运算符(二目)的重载
bool operator > (CTime &t);
bool operator < (CTime &t);
bool operator >= (CTime &t);
bool operator <= (CTime &t);
bool operator == (CTime &t);
bool operator != (CTime &t);
//二目运算符的重载
CTime operator+(CTime &c);//返回c所规定的时、分、秒后的时间,例t1(8,20,25),t2(11,20,50),t1+t2为:41:15
CTime operator-(CTime &c);//对照+理解
CTime operator+(int s);//返回s秒后的时间
CTime operator-(int s);//返回s秒前的时间
//一目运算符的重载
CTime operator++(int);//后置++,下一秒
CTime operator++();//前置++,下一秒
CTime operator--(int);//后置--,前一秒
CTime operator--();//前置--,前一秒
//赋值运算符的重载
CTime operator+=(CTime &c);
CTime operator-=(CTime &c);
CTime operator+=(int s);//返回s秒后的时间
CTime operator-=(int s);//返回s秒前的时间
};
//下面实现所有的运算符重载代码。
//为简化编程,请注意通过调用已有函数,利用好各函数之间的关系CTime::
void CTime::setTime(int h,int m,int s)
{
hour = h;
minute = m;
second = s;
}
bool CTime::operator > (CTime &t)
{
if (hour > t.hour && (hour == t.hour && minute > t.minute) && (hour == t.hour && minute == t.minute && second > t.second))
return true;
else
return false;
}
bool CTime::operator < (CTime &t)
{
if(*this > t || *this == t)
return false;
else
return true;
}
bool CTime::operator >= (CTime &t)
{
if(*this > t && *this == t)
return true;
else
return false;
}
bool CTime::operator <= (CTime &t)
{
if(*this < t && *this == t)
return true;
else
return false;
}
bool CTime::operator == (CTime &t)
{
if(hour == t.hour && minute == t.minute && second == t.second)
return true;
else
return false;
}
bool CTime::operator != (CTime &t)
{
if(*this == t)
return false;
else
return true;
}
//二目运算符的重载
CTime CTime::operator+(CTime &c)//返回c所规定的时、分、秒后的时间,例t1(8,20,25),t2(11,20,50),t1+t2为:41:1
{
return CTime(hour + c.hour, minute + c.minute, second + c.second);
}
CTime CTime::operator-(CTime &c)//对照+理解
{
return CTime(hour - c.hour, minute - c.minute, second - c.second);
}
CTime CTime::operator+(int s)//返回s秒后的时间,
{
/*if (s / 60 + minute < 60)
{
second += s % 60;
if (second >= 60)
second -= 60, minute++;
minute += s /60;
}
else
{
second += s % 60;
if()
minute += (s / 60 + minute) % 60;//做到此处
if()
hour += (s / 60 + minute) / 60;
}*/
int temp = hour * 3600 + minute * 60 + second;//将时间换成秒
temp += s;
hour = temp / 3600;
minute = temp / 60 - hour * 60;
second = temp % 60;
return *this;
}
CTime CTime::operator-(int s)//返回s秒前的时间
{
/*if (s < minute * 60)
{
minute -= s /60;
second -= s % 60;
}
else*/
int temp = hour * 3600 + minute * 60 + second;
temp -= s;
hour = temp / 3600;
minute = temp / 60 - hour * 60;
second = temp % 60;
return *this;
}
//一目运算符的重载
CTime CTime::operator++(int)//后置++,下一秒
{
CTime temp(*this);
*this = *this + 1;
return temp;
}
CTime CTime::operator++()//前置++,下一秒
{
*this = *this + 1;
return *this;
}
CTime CTime::operator--(int)//后置--,前一秒
{
CTime temp(*this);
*this = *this - 1;
return temp;
}
CTime CTime::operator--()//前置--,前一秒
{
*this = *this - 1;
return *this;
}
//赋值运算符的重载
CTime CTime::operator+=(CTime &c)
{
return CTime(hour + c.hour, minute + c.minute, second + c.second);
}
CTime CTime::operator-=(CTime &c)
{
return CTime(hour - c.hour, minute - c.minute, second - c.second);
}
CTime CTime::operator+=(int s)//返回s秒后的时间
{
int temp = hour * 3600 + minute * 60 + second;
temp += s;
hour = temp / 3600;
minute = temp / 60 - hour * 60;
second = temp % 60;
return *this;
}
CTime CTime::operator-=(int s)//返回s秒前的时间
{
int temp = hour * 3600 + minute * 60 + second;
temp -= s;
hour = temp / 3600;
minute = temp / 60 - hour * 60;
second = temp % 60;
return *this;
}
void CTime::display()
{
int temp = hour * 3600 + minute * 60 + second;//控制输出形式
hour = temp / 3600;
minute = temp / 60 - hour * 60;
second = temp % 60;
cout <<hour <<':' <<minute <<':' <<second <<endl;
}
主函数CTime.cpp
#include <iostream>
#include "CTime.h"
using namespace std;
void main()
{
CTime t1(8, 20, 25), t2(11, 20, 50), t;
cout <<"t1为:";
t1.display();
cout <<"t2为:";
t2.display ()
;
cout <<"下面比较两个时间大小:\n";
if (t1 > t2) cout <<"t1>t2" <<endl;
if (t1 < t2) cout <<"t1<t2" <<endl;
if (t1 == t2) cout <<"t1=t2" <<endl;
if (t1 != t2) cout <<"t1≠t2" <<endl;
if (t1 >= t2) cout<<"t1≥t2" <<endl;
if (t1 <= t2) cout<<"t1≤t2" <<endl;
t = t1 + t2;
cout <<"t1+t2=";
t.display ();
t = t1 + 4000;
cout <<"t1增加4000秒";
t.display ();
t = t2 - 6500;
cout <<"t2减少6500秒";
t.display ();
t1 ++;
cout <<"t1自增1秒";
t1.display ();
t2--;
cout <<"t2自减1秒";
t2.display ();
cout<<endl;
system("PAUSE");
}
不周之处,还望各位前辈多多指点。