/* (程序头部注释开始)
* 程序的版权和版本声明部分
* Copyright (c) 2011, 烟台大学计算机学院学生
* All rights reserved.
* 文件名称: 任务2】实现Time类中的运算符重载
* 作    者: 李洪悬
* 完成日期:   2012      年   4    月   11     日
* 版 本 号:
* 对任务及求解方法的描述部分
* 输入描述:
* 问题描述:实现Time类中的运算符重载
* 程序输出:
* 程序头部的注释结束
*/


【任务2】实现Time类中的运算符重载
#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);
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秒前的时间
};
//下面实现所有的运算符重载代码。
//为简化编程,请注意通过调用已有函数,利用好各函数之间的关系
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;
cout<<endl;
//下面自行设计对其他运算符的重载的测试
……
}


#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);
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::CTime(int h,int m,int s)
{
hour = h;
minute = m;
second = s;
}
void CTime::setTime(int h,int m,int s)
{
hour = h;
minute = m;
second = s;
}
void CTime::display()
{
cout << hour << " : " << minute << " : " << second << endl;
}
//比较运算符(二目)的重载
bool CTime::operator > (CTime &t)
{
if (hour>t.hour)
return true;
else if (hour<t.hour)
return false;
if (minute>t.minute)
return true;
else if (minute<t.minute)
return false;
if (second>t.second)
return true;
else  if (second<t.second)
return false;
}
bool CTime::operator < (CTime &t)
{
if (hour<t.hour)
return true;
else if (hour>t.hour)
return false;
if (minute<t.minute)
return true;
else if (minute>t.minute)
return false;
if (second<t.second)
return true;
else  if (second>t.second)
return false;
}
bool CTime::operator >= (CTime &t)
{
if (*this < t)
return false;
else
return true;
}
bool CTime::operator <= (CTime &t)
{
if (*this > t)
return false;
else
return true;
}
bool CTime::operator == (CTime &t)
{
if (*this >= t && *this <= 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:15
{
int h,m,s;
h = hour + c.hour;
m = minute + c.minute;
s = second + c.second;
if (s > 59)
{
s -= 60;
m +=1;
}
if (m> 59)
{
m -= 60;
s += 1;
}
if (h > 24)
{
h -= 24;
}
CTime t(h,m,s);
return t;
}
CTime CTime ::operator-(CTime &c)//对照+理解
{
int h,m,s;
h = hour - c.hour;
m = minute - c.minute;
s = second - c.second;
if (s < 0)
{
s  += 60;
m -=1;
}
if (m<0)
{
m += 60;
h -= 1;
}
if (h < 0)
{
h += 24;
}
CTime t(h,m,s);
return t;
}
CTime CTime ::operator+(int s)//返回s秒后的时间
{
int a,b,c;
a = second + s%60;
b =minute + ( s / 60 ) %60;
c = hour + s / 3600;
if (a > 59)
{
a -= 60;
b +=1;
}
if (b> 59)
{
b -= 60;
c += 1;
}
if (c > 24)
{
c -= 24;
}
CTime t(c,b,a);
return t;
}
CTime CTime ::operator - (int s)//返回s秒前的时间
{
int a,b,c;
a = second - s%60;
b =minute - ( s / 60 ) %60;
c = hour - s / 3600;
if (a < 0)
{
a  += 60;
b -=1;
}
if (b<0)
{
b += 60;
c -= 1;
}
if (c < 0)
{
c += 24;
}
CTime t(c,b,a);
return t;
}
//一目运算符的重载//太简单了
CTime CTime::operator++(int)//后置++,下一秒
{
CTime t=*this;
*this=*this+1;
return t;
}
CTime CTime::operator++()//前置++,下一秒
{
*this=*this+1;
return *this;
}
CTime CTime::operator--(int)//后置--,前一秒
{
CTime t=*this;
*this=*this-1;
return t;
}
CTime CTime::operator--()//前置--,前一秒
{
*this=*this-1;
return *this;
}
//赋值运算符的重载
CTime CTime::operator+=(CTime &c)
{
*this=*this+c;
return *this;
}
CTime CTime::operator-=(CTime &c)
{
*this=*this-c;
return *this;
}
CTime CTime::operator+=(int s)//返回s秒后的时间
{
*this=*this+s;
return *this;
}
CTime CTime::operator-=(int s)//返回s秒前的时间
{
*this=*this-s;
return *this;
}
int 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;
cout << " 对t1进行测试!"<< endl;
int s = 17;
cout << " s = " << s<< endl;
cout <<"返回s秒后的时间"<<endl;
t = t1 +s;
t.display();
//一目运算符的重载
cout <<"后置++,下一秒"<<endl;
t = t1 ++;
t.display();
cout <<"前置++,下一秒"<<endl;
t = ++t1;
t.display();
cout <<"后置- -,前一秒"<<endl;
t = t1 --;
t.display();
cout <<"前置- -,下一秒"<<endl;
t = --t1;
t.display();
cout <<"进行+=运算"<<endl;
t = t1 += t2;
cout << " t1 += t2=" ;
t.display();
cout <<"进行+=运算"<<endl;
t = t1 += s;
cout << " t1 += s= " ;
t.display();
system("pause");
return 0;
}
    
评论:我又做错啦!没事!接着改!我采用了老师的大量代码!太经典啦!
 




												

c++第八周【任务2】实现Time类中的运算符重载相关推荐

  1. 第八周--项目1--实现复数类中的运算符重载

    /* * Copyright (c) 2011, 烟台大学计算机学院 * All rights reserved. * 作 者:王静 * 完成日期:2013 年 4 月 24 日 * 版 本 号:v1 ...

  2. 第十二周项目一-实现复数类中的运算符重载(3)

    /**Copyright(c)2016,烟台大学计算机与控制工程学院*All rights reserved*文件名称:123.cpp*作 者:王蕊*完成日期:2016年5月15日*版 本 号:v1. ...

  3. 第十二周项目一-实现复数类中的运算符重载(2)

    /**Copyright(c)2016,烟台大学计算机与控制工程学院*All rights reserved*文件名称:123.cpp*作 者:王蕊*完成日期:2016年5月15日*版 本 号:v1. ...

  4. 第十二周项目一-实现复数类中的运算符重载(1)

    /**Copyright(c)2016,烟台大学计算机与控制工程学院*All rights reserved*文件名称:123.cpp*作 者:王蕊*完成日期:2016年5月15日*版 本 号:v1. ...

  5. c++第八周【任务1-2】实现复数类中的运算符重载

    /* (程序头部注释开始) * 程序的版权和版本声明部分 * Copyright (c) 2011, 烟台大学计算机学院学生 * All rights reserved. * 文件名称: c++第八周 ...

  6. c++第八周【任务1-1】实现复数类中的运算符重载

    /* (程序头部注释开始) * 程序的版权和版本声明部分 * Copyright (c) 2011, 烟台大学计算机学院学生 * All rights reserved. * 文件名称: c++第八周 ...

  7. c++第八周【任务1-3】实现复数类中的运算符重载

    /* (程序头部注释开始) * 程序的版权和版本声明部分 * Copyright (c) 2011, 烟台大学计算机学院学生 * All rights reserved. * 文件名称: * 作 者: ...

  8. 第十三周项目一-分数类中的运算符重载

    /**Copyright(c)2016,烟台大学计算机与控制工程学院*All rights reserved*文件名称:123.cpp*作 者:王蕊*完成日期:2016年5月25日*版 本 号:v1. ...

  9. 第十二周项目二-Time类中的运算符重载

    /**Copyright(c)2016,烟台大学计算机与控制工程学院*All rights reserved*文件名称:123.cpp*作 者:王蕊*完成日期:2016年5月24日*版 本 号:v1. ...

最新文章

  1. spring 组件基于注解的注册方式
  2. 【Android工具】好软件推荐,安卓手机免费好用的SSH客户端——JuiceSSH
  3. 人体姿态估计 自顶向下与自底向上
  4. IO、NIO、AIO 内部原理分析
  5. 肝!教你用Python抓取某天下楼盘数据
  6. 还不起9亿?有人建议为范冰冰发行一款私募ABS产品融资!
  7. Java下载文件的几种方式
  8. 使用表单传递参数,request处理参数出现未将对象引用设置到对象的实例
  9. 【干货】--基于Python的文本情感分类
  10. Saga分布式事务解决方案与实践
  11. 飞信2009_我的移动互联网十年经历 (一):飞信时代
  12. 为什么ps不能用计算机,电脑ps软件的填充功能无法使用怎么处理
  13. 为什么配置智能DNS解析的时候一定要有默认线路?
  14. python bytes是什么类型_python的Bytes类型
  15. 知乎周源微信_每周源代码3
  16. 条条道路通罗马感受古罗马帝国的辉煌时代!
  17. Renesas:定时器输入捕获
  18. win10自动安装软件
  19. 强化学习实践六 :给Agent添加记忆功能
  20. Monkey框架(测试方法篇) - monkey测试实例

热门文章

  1. 深入理解js基本类型和引用类型的区别
  2. 基于ChatGPT 开发 apple 脚本
  3. 独角兽百望云:跑出商业进步和科技向善的加速度
  4. 荣誉 | 再获认可,百望云入选“EqualOcean 2022中国SaaS 50强”榜单
  5. java获取请求者真实的公网ip地址
  6. 王歆瑶20190905-2博客作业
  7. 如何在terminal中使用Joplin并像vim一样移动?
  8. Unity中的资源管理-引用计数
  9. 虚拟服务器的lun,LUN虚拟化
  10. ubuntu16.04设置静态IP与DNS