*/
* 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. 吴裕雄--天生自然 PYTHON3开发学习:迭代器与生成器

    list=[1,2,3,4] it = iter(list) # 创建迭代器对象 for x in it: print (x, end=" ") import sys # 引入 s ...

  2. 在gff中切fa的内容

    #!/usr/bin/python import re def readfa(l): col={} arr =[] sca ='' li = open(l) for line in li: if re ...

  3. maven-assembly-plugin 打包包含多余依赖问题一则

    有同事反馈自己maven-assembly-plugin打的包里面多了很多mvn dependency:tree中没有的jar. 我当时只是试着把他的maven-assembly-plugin更新到了 ...

  4. The file named error_log is too large

    The file named errorlog is too large */--> The file named errorlog is too large 1 Problem One day ...

  5. [LC] 76. Minimum Window Substring

    Given a string S and a string T, find the minimum window in S which will contain all the characters ...

  6. TPO1-3 Timberline Vegetation on Mountains

    Wind velocity also increase with altitude and may cause serious stress for trees,as is made evident ...

  7. 一次完整的HTTP请求响应过程(很详细)

    一. HTTP请求和响应步骤   图片来自:理解Http请求与响应 以上完整表示了HTTP请求和响应的7个步骤,下面从TCP/IP协议模型的角度来理解HTTP请求和响应如何传递的. 二.TCP/IP协 ...

  8. centos5.5 下面 lnmp环境遇到的小问题

    A)nginx 启动:/www/nginx/sbin/nginx -c /www/nginx/conf/nginx.conf 查看: ps -ef | grep nginx 停止:强制停止所有Ngin ...

  9. HLS图像处理总结(一)

    HLS工具 以个人的理解,xilinx将HLS(高层次综合)定位于更方便的将复杂算法转化为硬件语言,通过添加某些配置条件HLS工具可以把可并行化的C/C++的代码转化为vhdl或verilog,相比于 ...

  10. 如何模拟ip

    展开全部回答查看 https://segmentfault.com/q/1010000002990136 模拟国外ip https://gtmetrix.com/ 登录后才可以切换模拟的地区