C++走向远洋——50(Time类中的运算符重载、一目,二目比较运算符、二目赋值运算符、二目加减法运算符)
*/
* 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类中的运算符重载、一目,二目比较运算符、二目赋值运算符、二目加减法运算符)的更多相关文章
- C++解析(16):友元与类中的函数重载
0.目录 1.友元的尴尬能力 2.类中的函数重载 3.小结 1.友元的尴尬能力 什么是友元? 友元是C++中的一种关系 友元关系发生在函数与类之间或者类与类之间 友元关系是单项的,不能传递 友元的用法 ...
- C++类中的函数重载
1,本课程最初阶段就学习了函数重载,但是那时研究目标仅限于全局函数,到目前 为止我们学习了三种函数: 1,全局函数: 2,普通成员函数: 3,静态成员函数: 这三种不同类型的函数之间是否可以构成重载, ...
- 解析C#类中的构造函数
<解析C#类中的构造函数> 一. C#中的构造函数概述: C#中类包含数据成员和函数成员.函数成员提供了操作类中数据的某些功能,包括方法.属性.构造器和终结器.运算符和索引器. 构造函数 ...
- C++ 友元(friend关键字)、类中的重载、操作符重载(operator关键字)
C++ 中友元的用法: 1.在类中使用friend关键字声明 2.类的友元可以是其它类或者具体函数 3.友元不是类的一部分 4.友元不受类中访问级别的限制 5.友元可以直接访问具体类中的所有成员. 友 ...
- C++学习之路—运算符重载(二)运算符重载作为类的成员函数和友元函数
(根据<C++程序设计>(谭浩强)整理,整理者:华科小涛,@http://www.cnblogs.com/hust-ghtao转载请注明) 对运算符重载的函数有两种处理方式:(1)把运算符 ...
- 编码实现字符串类CNString实现运算符重载
题目描述: 编码实现字符串类CNString,该类有默认构造函数.类的拷贝函数.类的析构函数及运算符重载,需实现以下"="运算符."+"运算."[]& ...
- C++走向远洋——49(项目一2、复数类中的运算符重载、类的友元函数)
*/ * Copyright (c) 2016,烟台大学计算机与控制工程学院 * All rights reserved. * 文件名:text.cpp * 作者:常轩 * 微信公众号:Worldhe ...
- C++走向远洋——48(项目一1、复数类中的运算符重载、类的成员函数)
*/ * Copyright (c) 2016,烟台大学计算机与控制工程学院 * All rights reserved. * 文件名:text.cpp * 作者:常轩 * 微信公众号:Worldhe ...
- C++走向远洋——55(项目一3、分数类的重载、>>
*/ * Copyright (c) 2016,烟台大学计算机与控制工程学院 * All rights reserved. * 文件名:text.cpp * 作者:常轩 * 微信公众号:Worldhe ...
随机推荐
- Linux 使用rpm方式安装最新mysql(5.7)步骤以及常见问题解决
第一步:下载rpm包 mysql官网下载:http://dev.mysql.com/downloads/mysql/ 但如果你的下载网速不好的话也可以点下面的链接下载自己想要的版本 http://mi ...
- pyCharm专业版最新2018激活码激活
说明:本人亲测有用,对Window.Linux.Mac都稳定有效. 缺点:需要修改hosts文件 步骤: 由于管理权限问题,大部分电脑都不能直接修改hosts文件,所以我们可以先将hosts文件复制到 ...
- BinarySearchTree(二叉搜索树)原理及C++代码实现
BST是一类用途极广的数据结构.它有如下性质:设x是二叉搜索树内的一个结点.如果y是x左子树中的一个结点,那么y.key<=x.key.如果y是x右子树中的一个结点,那么y.key>=x. ...
- 路由器协议----IGP、EGP、RIP、OSPF、BGP、MPLS
1.路由控制的定义 <br>1.1.IP地址与路由控制 file:///var/folders/pz/cy11_lpd5rqfs66s778032580000gn/T/51.html ...
- Codeforces Round #572 (Div. 1) 差E
Codeforces Round #572 (Div. 1) A2 题意:给一棵树,带边权,互不相同且为偶数.每次操作是选两个叶子然后在路径上同时加一个数.初始边权全是0,求一个操作序列使得最终边权与 ...
- 进程异常行为-反弹Shell攻击,KILL多个进程
进程异常行为-反弹Shell攻击 父进程名称:bash 进程名称:bash 进程名称:/usr/bin/bash 进程id:23,077 命令行参数:sh -c /bin/bash -i >&a ...
- 《运筹学基础及应用》习题1.1(b),1.1(c),1.2(a)
用图解法求解下列线性规划问题,并指出问题具有惟一最优解,无穷多最优解,无界解还是无可行解. 习题1.1(b):$\max z=3x_1+2x_2$$$s.t\begin{cases} 2x_1+x_ ...
- 推荐系统之矩阵分解(MF)
一.矩阵分解 1.案例 我们都熟知在一些软件中常常有评分系统,但并不是所有的用户user人都会对项目item进行评分,因此评分系统所收集到的用户评分信息必然是不完整的矩阵.那如何跟据这个不完整矩阵中已 ...
- 吴裕雄--天生自然 python开发学习:在Cenos 7 系统上安装配置python3.6.5
安装相关依赖包. 在终端下输入命令:sudo yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-deve ...
- Contig|scaffold|N50|L50|NG50|贪心算法|de bruiji graph|
生物信息学 Contig是reads拼成的连续的DNA片段,连续表达一个gene.通过双端测序的contig可确定contig之间的关系得到scaffold,Scaffold是reads拼成的有gap ...