*/
* Copyright (c) 2016,烟台大学计算机与控制工程学院
* All rights reserved.
* 文件名:text.cpp
* 作者:常轩
* 微信公众号:Worldhello
* 完成日期:2016年5月17日
* 版本号:V1.0
* 问题描述: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); //二目的加减运算符的重载
//返回t规定的时、分、秒后的时间
//例t1(8,20,25),t2(11,20,50),t1+t2为19:41:15
CTime operator+(CTime &t);
CTime operator-(CTime &t);//对照+理解
CTime operator+(int s);//返回s秒后的时间
CTime operator-(int s);//返回s秒前的时间
//二目赋值运算符的重载
CTime &operator+=(CTime &c);
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::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) // 判断时间t1>t2
{
if (hour>t.hour)
return true;
if (hour<t.hour)
return false;
if (minute>t.minute)
return true;
if (minute<t.minute)
return false;
if (second>t.second)
return true;
return false;
}
bool CTime::operator <(CTime &t) //判断时间t1<t2
{
if(hour<t.hour)
return true;
if(hour>t.hour)
return false;
if(minute<t.minute)
return true;
if(minute>t.minute)
return false;
if(second<t.second)
return true;
return false;
}
//因为可以直接使用已经重载了的运算实现新运算,所以下面的成员函数就很容易实现了
bool CTime::operator ==(CTime &t) //判断时间t1==t2
{
if (*this<t || *this>t)
return false;
return true;
}
bool CTime::operator <=(CTime &t) //判断时间t1<=t2
{
if(*this<t||*this==t)
return true;
return false;
}
bool CTime::operator >=(CTime &t) //判断时间t1>=t2
{
if(*this>t||*this==t)
return true;
return false;
}
bool CTime::operator !=(CTime &t) //判断时间t1!=t2
{
if(*this==t)
return false;
return true;
}
//二目的加减运算符的重载
CTime CTime::operator + (CTime &t) //t1+t2
{
int h,m,s;
s=second+t.second;
m=minute+t.minute;
h=hour+t.hour;
if (s>59)
{
s-=60;
m++;
}
if (m>59)
{
m-=60;
h++;
}
while (h>23) h-=24;
CTime t0(h,m,s);
return t0;
} CTime CTime::operator-(CTime &t) //t1-t2
{
int h,m,s;
s=second-t.second;
m=minute-t.minute;
h=hour-t.hour;
if(s<0)
{
s+=60;
m--;
}
if(m<0)
{
m+=60;
h--;
}
if(h<0)
h+=24;
CTime t0(h,m,s);
return t0;
}
//返回s秒后的时间
CTime CTime::operator+(int s)
{
int ss=s%60;
int mm=(s/60)%60;
int hh=s/3600;
CTime t0(hh,mm,ss);
return *this+t0; //通过使用前面定义的运算符重载函数来减少代码数量
}
//返回s秒前的时间
CTime CTime::operator -(int s)
{
int ss=s%60;
int mm=(s/60)%60;
int hh=s/3600;
CTime t0(hh,mm,ss);
return *this-t0;
}
//二目赋值运算符的重载
CTime &CTime::operator+=(CTime &c)
{
*this=*this+c;
return *this;
}
CTime &CTime::operator-=(CTime &c)
{
*this=*this-c;
return *this;
}
//返回S秒后的时间
CTime &CTime::operator+=(int s)
{
*this=+s;
return *this;
}
//返回S秒前的时间
CTime &CTime::operator -=(int s)
{
*this-=s;
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--(int)//后置--,前一秒
{
CTime t=*this;
*this=*this-1;
return t;
} CTime &CTime::operator--()//前置--,前一秒
{
*this=*this-1;
return *this;
}
int main()
{
CTime t1,t2,t; t1.setTime(5,12,12);
t2.setTime(1,2,2);
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=";
t1.display(); //5:12:12
cout<<"t2=";
t2.display(); //1:2:2 t=t1++;
cout<<"t=";
t.display();
t=t1++;
cout<<"t=";
t.display();
cout<<endl;
cout<<"t1=";
t1.display();
t=++t1;
cout<<"t=";
t.display();
t=++t1;
cout<<"t=";
t.display();
cout<<endl;
cout<<"t1=";
t1.display();
cout<<"t2=";
t2.display(); cout<<"t1+t2= ";
t=t1+t2;
t.display();
cout<<"t1-t2= ";
t=t1-t2;
t.display();
cout<<"t1+2000= ";
t=t1+2000;
t.display();
cout<<"t1-5000= ";
t=t1-5000;
t.display();
return 0;
}

运行结果:

心得:

因为此程序的代码量较大,所以小毛病除了不少。其中在下面的代码中有一个疑问

bool CTime::operator <=(CTime &t)  //判断时间t1<=t2
{
if(*this<t||*this==t)
return true;
return false;
}
bool CTime::operator >=(CTime &t) //判断时间t1>=t2
{
if(*this>t||*this==t)
return true;
return false;
}

原来是:

bool CTime::operator <=(CTime &t)  //判断时间t1<=t2
{
if(*this<=t)
return true;
return false;
}
bool CTime::operator >=(CTime &t) //判断时间t1>=t2
{
if(*this>=t)
return true;
return false;
}

在运行时也不报错,但是每次运行到这里后程序就自动结束了。最后又改成上面那一段代码了,具体是怎么回事老师也没给出答案。。。。

C++走向远洋——50(Time类中的运算符重载、一目,二目比较运算符、二目赋值运算符、二目加减法运算符)的更多相关文章

  1. C++解析(16):友元与类中的函数重载

    0.目录 1.友元的尴尬能力 2.类中的函数重载 3.小结 1.友元的尴尬能力 什么是友元? 友元是C++中的一种关系 友元关系发生在函数与类之间或者类与类之间 友元关系是单项的,不能传递 友元的用法 ...

  2. C++类中的函数重载

    1,本课程最初阶段就学习了函数重载,但是那时研究目标仅限于全局函数,到目前 为止我们学习了三种函数: 1,全局函数: 2,普通成员函数: 3,静态成员函数: 这三种不同类型的函数之间是否可以构成重载, ...

  3. 解析C#类中的构造函数

    <解析C#类中的构造函数> 一.  C#中的构造函数概述: C#中类包含数据成员和函数成员.函数成员提供了操作类中数据的某些功能,包括方法.属性.构造器和终结器.运算符和索引器. 构造函数 ...

  4. C++ 友元(friend关键字)、类中的重载、操作符重载(operator关键字)

    C++ 中友元的用法: 1.在类中使用friend关键字声明 2.类的友元可以是其它类或者具体函数 3.友元不是类的一部分 4.友元不受类中访问级别的限制 5.友元可以直接访问具体类中的所有成员. 友 ...

  5. C++学习之路—运算符重载(二)运算符重载作为类的成员函数和友元函数

    (根据<C++程序设计>(谭浩强)整理,整理者:华科小涛,@http://www.cnblogs.com/hust-ghtao转载请注明) 对运算符重载的函数有两种处理方式:(1)把运算符 ...

  6. 编码实现字符串类CNString实现运算符重载

    题目描述: 编码实现字符串类CNString,该类有默认构造函数.类的拷贝函数.类的析构函数及运算符重载,需实现以下"="运算符."+"运算."[]& ...

  7. C++走向远洋——49(项目一2、复数类中的运算符重载、类的友元函数)

    */ * Copyright (c) 2016,烟台大学计算机与控制工程学院 * All rights reserved. * 文件名:text.cpp * 作者:常轩 * 微信公众号:Worldhe ...

  8. C++走向远洋——48(项目一1、复数类中的运算符重载、类的成员函数)

    */ * Copyright (c) 2016,烟台大学计算机与控制工程学院 * All rights reserved. * 文件名:text.cpp * 作者:常轩 * 微信公众号:Worldhe ...

  9. C++走向远洋——55(项目一3、分数类的重载、>>

    */ * Copyright (c) 2016,烟台大学计算机与控制工程学院 * All rights reserved. * 文件名:text.cpp * 作者:常轩 * 微信公众号:Worldhe ...

随机推荐

  1. 吴裕雄--天生自然TensorFlow高层封装:Keras-RNN

    # 1. 数据预处理. from keras.layers import LSTM from keras.datasets import imdb from keras.models import S ...

  2. jquery预加载的几种例子

    实际编写前端页面时,有时候希望一打开某个页面就加载一些方法.下面是4种预加载方法. ①页面加载完之前执行,与嵌入的js加载方式一样(写jquery插件的时候使用) (function ($) { al ...

  3. TPO1-2 The Origin of Theater

    Stories (myths) may then grow up around a ritual. Frequently the myths include representatives of th ...

  4. ac_查看每个用户登陆服务器所使用的时间

    ac 如果你想知道每个用户登录服务器所使用的时间,你可以使用 ac 命令.这个命令需要你安装acct 包(Debian)或 psacct 包(RHEL,Centos). 如果我们想知道所有用户登陆服务 ...

  5. 十七、linux系统磁盘管理

     1.    磁盘是存放许多重要数据的地方,所有了解磁盘是非常重要的.  2.    我们现在一块高达1000GB(1T)磁盘,就是3个盘前(1个3.5寸盘)组成.磁盘在工作的时候,盘片是高速旋转,磁 ...

  6. LeetCode No.94,95,96

    No.94 InorderTraversal 二叉树的中序遍历 题目 给定一个二叉树,返回它的中序 遍历. 示例 输入: [1,null,2,3] 1 \ 2 / 3 输出: [1,3,2] 进阶:递 ...

  7. jQuery性能优化与技巧

    1.使用最新版本的jQuery类库 jQuery的每一个新的版本都会较上一版进行Bug修复和一些优化,同时也会包含一些创新,所以建议使用最新版本的jQuery来提高性能,需要注意的是在更换版本之后,要 ...

  8. Rearrangement

    In a two dimensional array of integers of size 2×n2 \times n2×n, is it possible to rearrange integer ...

  9. Spring Boot Admin最佳实践

    本文不进行Spring Boot Admin入门知识点说明 在Spring Boot Actuator中提供很多像health.metrics等实时监控接口,可以方便我们随时跟踪服务的性能指标.Spr ...

  10. be accustomed to doing|actual |acute|adapt |

    Sometimes you've got to play a position that you're not accustomedto for 90 minutes, " he said. ...