C++实践Time类中的运算符重载参考方法

【项目-Time类中的运算符重载】

实现Time类中的运算符重载。

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--();//前置--,前一秒
};

提示1:并不是所有比较运算重载函数都很复杂

//比较运算返回的是比较结果,是bool型的true或false
//可以直接使用已经重载了的运算实现新运算,例如果已经实现了 > ,则实现 <= 就可以很方便了……
bool CTime::operator <= (CTime &t) // 判断时间t1<=t2
{
  if (*this > t) return false;
  return true;
}

甚至可以如下面的代码般简练:

bool CTime::operator <= (CTime &t){return !(*this > t)}

提示2:并不是所有复合赋值运算重载函数都需要很复杂

//可以直接使用已经重载了的加减运算实现
//这种赋值, 例如 t1+=20,直接改变当前对象的值,所以在运算完成后,将*this作为返回值
CTime &CTime::operator+=(CTime &c)
{
  *this=*this+c;
  return *this;
}

提示3:请自行编制用于测试的main()函数,有些结果不必依赖display()函数,提倡用单步执行查看结果

[参考解答]

#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);
  //输入输出运算的重载
  friend istream &operator>>(istream &in,CTime &t);
  friend ostream &operator<<(ostream &out,CTime t);
  //比较运算符(二目)的重载
  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;
}
// 重载输入运算符>>
istream &operator>>(istream &in,CTime &t)
{
  char ch1,ch2;
  while(1)
  {
    cout<<"请输入时间(hh:mm:ss) ";
    cin>>t.hour>>ch1>>t.minute>>ch2>>t.second;
    if (ch1==':' && ch2==':')
      if (t.hour>-1 && t.hour<24 && t.minute>-1 && t.minute<60 && t.second>-1 && t.second<60) break;
    cerr<<"时间格式不正确! 请重新输入\n";
  }
  return cin;
}
// 重载输出运算符<<
ostream &operator<<(ostream &out,CTime t)
{
  out<<t.hour<<':'<<t.minute<<':'<<t.second;
  return out;
}
//比较运算符的重载
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) return false;
  return true;
}
bool CTime::operator >= (CTime &t)// 判断时间t1>=t2
{
  if (*this<t) return false;
  return true;
}
bool CTime::operator <= (CTime &t) // 判断时间t1<=t2
{
  if (*this>t) return false;
  return true;
}
//二目运算符的重载
// 计算时间之和, 返回c所规定的时、分、秒后的时间,例t1(8,20,25),t2(11,20,50),t1+t2为:41:15
CTime CTime::operator + (CTime &t)
{
  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;
}
//返回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 &t)
{
  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--;
  }
  while (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;
}
//一目运算符的重载
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,t2,t;
  cout<<"t1为:";
  cin>>t1;
  cout<<"t2为:";
  cin>>t2;
  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;
  cout<<"t1= "<<t1<<endl;
  cout<<"t2= "<<t2<<endl;
  cout<<"t=t1++"<<endl;
  t=t1++;
  cout<<"t= "<<t<<"  t1= "<<t1<<endl;
  cout<<"t=++t1"<<endl;
  t=++t1;
  cout<<"t= "<<t<<"  t1= "<<t1<<endl;
  cout<<"t1+t2= "<<t1+t2<<endl;
  cout<<"t1-t2= "<<t1-t2<<endl;
  cout<<"t1+2000= "<<t1+2000<<endl;
  cout<<"t1-5000= "<<t1-5000<<endl;
  return 0;
}

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对我们的支持。如果你想了解更多相关内容请查看下面相关链接

(0)

相关推荐

  • 一张图总结C++中关于指针的那些事

    指向对象的指针,指向数据成员的指针,指向成员函数的指针: 数组即指针,数组的指针,指针数组: 指向函数的指针,指向类的成员函数的指针,指针作为函数参数,指针函数: 指针的指针,指向数组的指针:常指针,指向常对象的指针: -- 大哥,这些都是什么鬼?! 用下面一张图全概括.用例子对照图示,有感觉,就用术语将概念大声地念出来,动员所有的感官参与,搞清楚这些,不是事. 图如下: 总结 以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对我们的支持.如果你想

  • Dijkstra算法最短路径的C++实现与输出路径

    某个源点到其余各顶点的最短路径 这个算法最开始心里怕怕的,不知道为什么,花了好长时间弄懂了,也写了一遍,又遇到时还是出错了,今天再次写它,心里没那么怕了,耐心研究,懂了之后会好开心的,哈哈 Dijkstra算法: 图G 如图:若要求从顶点1到其余各顶点的最短路径,该咋求: 迪杰斯特拉提出"按最短路径长度递增的次序"产生最短路径. 首先,在所有的这些最短路径中,长度最短的这条路径必定只有一条弧,且它的权值是从源点出发的所有弧上权的最小值,例如:在图G中,从源点1出发有3条弧,其中以弧(1

  • 约瑟夫经典问题扩展成双向约瑟夫问题

    约瑟夫问题是一个经典的问题,我们不妨将这个经典问题进行扩展,变成一个双向的约瑟夫问题. 已知 n 个人(不妨分别以编号 1,2,3,...,n 代表 )围坐在一张圆桌周围,首先从编号为 k 的人从 1 开始顺时针报数,1, 2, 3, ...,记下顺时针数到 m 的那个人,同时从编号为 k 的人开始逆时针报数,1, 2, 3, ...,数到 m 后,两个人同时出列.然后从出列的下一个人又从 1 开始继续进行双向报数,数到 m 的那两个人同时出列,...:.依此重复下去,直到圆桌周围的人全部出列.

  • C++实践数组类运算的实现参考

    [项目-数组类运算的实现] 设计数组类Array,为了实现测试函数中要求的功能,请补足相关的函数(构造.析构函数)和运算符重载的函数. 实现策略提示:可以将测试函数中的语句加上注释,取消一句的注释,增加相应的函数,以渐增地实现所有的功能,避免全盘考虑带来的困难. class Array { private: int* list; //用于存放动态分配的数组内存首地址 int size; //数组大小(元素个数) public: //成员函数声明 }; //要求测试函数能够运行出正确.合理的结果:

  • C++稀疏矩阵的各种基本运算并实现加法乘法

    代码: #include <iostream> #include<malloc.h> #include<cstdio> using namespace std; #define M 4 #define N 4 #define MaxSize 100 typedef int ElemType; typedef struct { int r; int c; ElemType d;///元素值 } TupNode; ///三元组定义 typedef struct { int

  • C++实践分数类中运算符重载的方法参考

    [项目-分数类中的运算符重载] (1)实现分数类中的运算符重载,在分数类中可以完成分数的加减乘除(运算后再化简).比较(6种关系)的运算. class CFraction { private: int nume; // 分子 int deno; // 分母 public: //构造函数及运算符重载的函数声明 }; //重载函数的实现及用于测试的main()函数 (2)在(1)的基础上,实现分数类中的对象和整型数的四则运算.分数类中的对象可以和整型数进行四则运算,且运算符合交换律.例如:CFrac

  • C++实践IP地址类项目参考

    [项目-IP地址类] 在互联网中使用的IP地址占4字节,可以用四段法表示,每段值的范围为0-255,中间用"."隔开,例如202.194.116.97.其实,也可以看看一个有4字节的无符号整型值3401741409. 现设计一个IP地址类,用于保存IP地址,并实施在IP地址上的一些操作.如下所示: class IP { private: union //由此匿名联合体可以看出,IP地址共占4个字节 { struct //这是一个由4个字节构成的匿名结构体 { unsigned char

  • C++实践数组作数据成员的参考

    [项目 - 数组作数据成员]下面是设计好的一个工资类(Salary): class Salary { public: void set_salarys( );//输入职工工资(输入-1标志着工资输入结束),工资保存到salary数组中,实际人数保存到number中: void add_salarys(int x); //给每个人涨x元工资 void sort_salarys(); //对工资由大到小排序 void show_salarys( ); //显示工资信息 private: double

  • C++项目求Fibonacci数列的参考解答

    [项目:求Fibonacci数列] Fibonacci数列在计算科学.经济学等领域中广泛使用,其特点是:第一.二个数是1,从第3个数开始,每个数是其前两个数之和.据此,这个数列为:1 1 2 3 5 8 13 21 34 55 89 --,请设计程序,输出这个数列,直到这个数字超过10000. [提示]数列可以表示为: [参考解答] #include <iostream> using namespace std; int main( ) { int f1,f2,fn,n; f1=f2=1; n

  • C++面试基础之static关键字详解

    前言 static是 c++ 的关键字,顾名思义是表示静态的含义.它在 c++ 中既可以修饰变量也可以修饰函数.那当我们使用 static 时,编译器究竟做了哪些事情呢? 早先面试中被问到 static 关键字,感觉既熟悉又陌生.熟悉是都知道如何去使用它,陌生又来自不知道它究竟对我们程序做了什么.今天就来好好复习下这个关键字,本文的重点也在第三部分. 先看一下示例代码: test1.cpp #include <iostream> extern int a_int; extern void fu

随机推荐