在CTime类中重载<<和>>

程序代码:

#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& input, CTime& c);

    //重载<<实现输出时间
    friend ostream&  operator <<(ostream& output, CTime& c);

    //比较运算符(二目)的重载
	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);
	CTime operator-=(int 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& input, CTime& c)
{
    char ch1, ch2;//保存时和分、分和秒之间的冒号

    do
    {
        input>>c.hour>>ch1>>c.minute>>ch2>>c.second;

    }while(!(':' == ch1 && ':' == ch2));

    return input;
}

//重载<<实现输出时间
ostream&  operator <<(ostream& output, CTime& c)
{
     output<<c.hour<<':'<<c.minute<<':'<<c.second<<endl;

     return output;
}

//比较运算符(二目)的重载
bool CTime::operator > (CTime &t)
{
    //计算时间为多少秒
    int sec1 = hour * 3600 + minute * 60 + second;
    int sec2 = t.hour * 3600 + t.minute * 60 + t.second;

    if(sec1 > sec2)
    {
        return true;
    }
    else
    {
        return false;
    }
}

bool CTime::operator < (CTime &t)
{
    //计算时间为多少秒
    int sec1 = hour * 3600 + minute * 60 + second;
    int sec2 = t.hour * 3600 + t.minute * 60 + t.second;

    if(sec1 < sec2)
    {
        return true;
    }
    else
    {
        return false;
    }
}

bool CTime::operator >= (CTime &t)
{
     //计算时间为多少秒
    int sec1 = hour * 3600 + minute * 60 + second;
    int sec2 = t.hour * 3600 + t.minute * 60 + t.second;

    if(sec1 >= sec2)
    {
        return true;
    }
    else
    {
        return false;
    }
}

bool CTime::operator <= (CTime &t)
{
     //计算时间为多少秒
    int sec1 = hour * 3600 + minute * 60 + second;
    int sec2 = t.hour * 3600 + t.minute * 60 + t.second;

    if(sec1 <= sec2)
    {
        return true;
    }
    else
    {
        return false;
    }
}

bool CTime::operator == (CTime &t)
{
     //计算时间为多少秒
    int sec1 = hour * 3600 + minute * 60 + second;
    int sec2 = t.hour * 3600 + t.minute * 60 + t.second;

    if(sec1 == sec2)
    {
        return true;
    }
    else
    {
        return false;
    }
}

bool CTime::operator != (CTime &t)
{
     //计算时间为多少秒
    int sec1 = hour * 3600 + minute * 60 + second;
    int sec2 = t.hour * 3600 + t.minute * 60 + t.second;

    if(sec1 != sec2)
    {
        return true;
    }
    else
    {
        return false;
    }
}
//二目运算符的重载
CTime CTime::operator+(CTime &c)//返回c所规定的时、分、秒后的时间,例t1(8,20,25),t2(11,20,50),t1+t2为:41:15
{
    //将时间化成秒数
    int sec1 = hour * 3600 + minute * 60 + second;
    int sec2 = c.hour * 3600 + c.minute * 60 + c.second;

    //两个时间相加
    int sec3 = sec1 + sec2;

    CTime t1;

    t1.hour = sec3 / 3600;//计算时间(时)
    t1.minute = sec3 % 3600 / 60;//计算时间(分)
    t1.second = sec3 % 3600 % 60;//计算时间(秒)

    return t1;
}

CTime CTime::operator-(CTime &c)//对照+理解
{
     //将时间化成秒数
    int sec1 = hour * 3600 + minute * 60 + second;
    int sec2 = c.hour * 3600 + c.minute * 60 + c.second;

    //两个时间相减
    int sec3 = sec1 - sec2;

    CTime t1;

    t1.hour = sec3 / 3600;//计算时间(时)
    t1.minute = sec3 % 3600 / 60;//计算时间(分)
    t1.second = sec3 % 3600 % 60;//计算时间(秒)

    return t1;
}

CTime CTime::operator+(int s)//返回s秒后的时间
{
    CTime t;

    //将时间化成秒数
    int sec1 = hour * 3600 + minute * 60 + second;

    //计算增加s秒后的时间
    int sec2 = sec1 + s;

    t.hour = sec2 / 3600;//计算时间(时)
    t.minute = sec2 % 3600 / 60;//计算时间(分)
    t.second = sec2 % 3600 % 60;//计算时间(秒)

    return t;
}

CTime CTime::operator-(int s)//返回s秒前的时间
{

    CTime t;

    //将时间化成秒数
    int sec1 = hour * 3600 + minute * 60 + second;

    //计算减少s秒后的时间
    int sec2 = sec1 - s;

    t.hour = sec2 / 3600;//计算时间(时)
    t.minute = sec2 % 3600 / 60;//计算时间(分)
    t.second = sec2 % 3600 % 60;//计算时间(秒)

    return t;
}

//一目运算符的重载
CTime CTime::operator++( int)//后置++,如i++
{
    CTime t = *this;
    *this = *this + 1;

    return t;
}

CTime CTime::operator++()//前置++, 如++i;
{
    *this = *this + 1;

    return *this;
}

CTime CTime::operator--( int)//后置--, 如i--
{
    CTime t  = *this;
    *this = *this + 1;
    return t;
}

CTime CTime::operator--()//前置--, 如--i
{
    *this = *this - 1;

    return *this;
}

//两个时间相加(this是指向Time类的指针)
CTime CTime::operator+=(CTime &c)
{
    *this = *this + c;

    return *this;
}

//两个时间相减(this是指向Time类的指针)
CTime CTime::operator-=(CTime &c)
{
    *this = *this - c;

    return *this;
}

//增加s秒
CTime CTime::operator+=(int s)
{
    //将时间化成秒数
    int sec1 = hour * 3600 + minute * 60 + second;

    //计算增加s秒后的时间
    int sec2 = sec1 + s;

    CTime t1;

    t1.hour = sec2 / 3600;//计算时间(时)
    t1.minute = sec2 % 3600 / 60;//计算时间(分)
    t1.second = sec2 % 3600 % 60;//计算时间(秒)

    return t1;
}

//减少s秒
CTime CTime::operator-=(int s)
{
     //将时间化成秒数
    int sec1 = hour * 3600 + minute * 60 + second;

    //计算增加s秒后的时间
    int sec2 = sec1 - s;

    CTime t1;

    t1.hour = sec2 / 3600;//计算时间(时)
    t1.minute = sec2 % 3600 / 60;//计算时间(分)
    t1.second = sec2 % 3600 % 60;//计算时间(秒)

    return t1;
}

void main()
{
    //定义三个时间对象
	CTime t1, t2, t;

    cout<<"请输入第一个时间:";
    cin>>t1;

    cout<<"请输入第二个时间:";
    cin>>t2;

    //显示第一个时间
    cout<<"t1 = ";
	cout<<t1;

    //显示第二个时间
    cout<<"t2 = ";
	cout<<t2;

    cout<<"\n下面比较两个时间大小:\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 + t2 = ";
    t = t1 + t2;
    cout<<t;

    //两个时间相减
    cout<<"t1 - t2 = ";
    t = t1 - t2;
    cout<<t;

    //计算t1增加300秒后的时间
    cout<<"t1 + 300秒 = ";
    t = t1 + 300;
    cout<<t;

    //计算t1减少300秒后的时间
    cout<<"t1 - 300秒 = ";
    t = t1 - 300;
    cout<<t;
    cout<<endl;

    cout<<"t1 = ";
    cout<<t1;

     //计算t1++
    cout<<"t1++ = ";
    t = t1++;
    cout<<t;
    cout<<endl;

     cout<<"t1 = ";
    cout<<t1;

     //计算++t1
    cout<<"++t1 = ";
    t = ++t1;
    cout<<t;
    cout<<endl;

    cout<<"t1 = ";
    cout<<t1;

     //计算t1--
    cout<<"t1-- = ";
    t = t1--;
    cout<<t;
    cout<<endl;

     cout<<"t1 = ";
    cout<<t1;

     //计算--t1
    cout<<"--t1 = ";
    t = --t1;
    cout<<t;
    cout<<endl;

    cout<<"t2 = ";
    cout<<t2;

    cout<<"t = ";
    cout<<t;

    t2 += t;

    cout<<"执行 t2 += t1 后 t2 = ";
    cout<<t2;
    cout<<endl;

    cout<<"t2 = ";
    cout<<t2;

    cout<<"t = ";
    cout<<t;

    t2 -= t;

     cout<<"执行 t2 -= t1 后 t2 = ";
    cout<<t2;
    cout<<endl;

    system("pause");
}

执行结果:

在CTime类中重载<<和>>,布布扣,bubuko.com

时间: 2024-10-24 23:51:09

在CTime类中重载<<和>>的相关文章

在CTime类中重载&amp;lt;&amp;lt;和&amp;gt;&amp;gt;

程序代码: #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);//设置时

设计CTime类,并且在CTime类中使用运算符重载

程序代码: #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);//设置时

类中重载和重写的区别

类中函数重载 必须在同一个类中进行 子类无法重载父类的函数,父类同名函数将被名称覆盖 重载是在编译期间根据参数类型和个数决定函数调用 类中函数重写 必须发生于父类与子类之间 并且父类与子类中的函数必须有完全相同的原型 使用virtual声明之后能够产生多态(如果不使用virtual,那叫重定义) 多态是在运行期间根据具体对象的类型决定函数调用 #include <iostream> using namespace std; class Parent { public: void print (

Python类中实例属性的通用显示工具

0.说明 以下的思想方法非常有用,可以帮助你在Python开发提高开发和维护效率,所以可能的话,请仔细琢磨一下其中的代码. 之前在用Python编写一个类时,为了显示的友好性,总是需要在每个类中重载__str__或者__repr__方法,现在有了更好的方法,不需要在每个类中都这么做了,下面给出的方法非常实用. 下面使用的例子使用的Python版本都是Python3.5,但实际上在Python2.7中进行也没有任何影响. 1.正常情况下类实例的不友好显示 在Python中编写一个类时,由于没有重载

VC++ error C2248: &ldquo;CObject::CObject&rdquo;: 无法访问 private 成员(在&ldquo;CObject&rdquo;类中声明)

在使用诸如:CArray或是 CList等类时,经常会出现此错误 此错误的原因是由于自定义的类的数组项时 有一个操作如  Add()  在这个操作中,实际上需要一个 = 操作,但是这个 =操作在 自定义类中没有实现,于是,程序自动去它的parent 类 也就是 CObject 类去找,但是却找到个这个类的 = 是一个 private  于是就报了这个错误. 知道了原因解决方法自然就有了,那就是在自定义类中 重载操作符 =   重载后 这个错误就没有了. class COptRect : publ

第九周项目2-Time类中的运算符重载(续)

在Time类中的运算符重载基础上 (1)定义对时间对象的自增和自减一目运算符 (2)定义Time类中的<<和>>运算符重载,实现时间的输入输出,改造原程序中对运算结果显示方式,使程序读起来更自然. /* * Copyright (c) 2015,烟台大学计算机学院 * All right reserved. * 作者:邵帅 * 文件:Demo.cpp * 完成时间:2015年05月14日 * 版本号:v1.0 */ #include <iostream> using n

第八周项目 二 【项目2-Time类中的运算符重载】

[项目2-Time类中的运算符重载] 实现Time类中的运算符重载. [cpp] view plaincopyprint? 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,i

第九周项目二-Time类中的运算符重载(续)

<span style="color: rgb(85, 85, 85); font-family: 'microsoft yahei'; font-size: 15px; line-height: 35px;">在Time类中的运算符重载基础上</span><br style="color: rgb(85, 85, 85); font-family: 'microsoft yahei'; font-size: 15px; line-height:

第九周 项目二-Time类中的运算符重载(续)

在Time类中的运算符重载基础上 (1)定义对时间对象的自增和自减一目运算符 //一目运算符的重载 CTime operator++(int);//后置++,下一秒 CTime operator++();//前置++,下一秒,前置与后置返回值不一样 CTime operator--( int);//后置--,前一秒 CTime operator--();//前置--,前一秒 (2)定义Time类中的<<和>>运算符重载,实现时间的输入输出,改造原程序中对运算结果显示方式,使程序读起