Time類中的運算子過載

2021-07-12 04:57:43 字數 2337 閱讀 4705

* 檔名稱:3.cpp

* 完成日期:2023年 5 月 24日

* 版本號: v1.0

*/#include using namespace std;

class ctime

; void settime(int h,int m,int s);

//輸入輸出運算的過載

friend istream &operator>>(istream &in,ctime &t);

friend ostream &operator<

//比較運算子(二目)的過載

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秒前的時間

void display();

}; void ctime::settime(int h,int m,int s)

void ctime::display()

bool ctime::operator <= (ctime &t)

bool ctime::operator < (ctime &t)

bool ctime::operator >= (ctime &t)

if(c.minute>=60)

if(c.hour>=24)

c.hour%=24;

return c;

} ctime ctime:: operator-(ctime &t)//對照+理解

ctime ctime::operator+(int s)//返回s秒後的時間

if(c.minute>=60)

if(c.hour>=24)

c.hour%=24;

return c;

} ctime ctime::operator-(int s)//返回s秒前的時間

ctime &ctime::operator+=(ctime &c)

ctime &ctime::operator-=(ctime &c)

ctime &ctime::operator+=(int s)//返回s秒後的時間

ctime &ctime::operator-=(int s)//返回s秒前的時間

ctime ctime::operator++(int)//後置++,下一秒

ctime &ctime::operator++()//前置++,下一秒

ctime ctime::operator--( int)//後置--,前一秒

ctime &ctime::operator--()//前置--,前一秒

istream &operator>>(istream &in,ctime &t)

return cin;

} ostream &operator<

{ out<>t1;

cout<

cin>>t2;

cout<

if (t1>t2) cout

Time類中的運算子過載

include using namespace std class ctime void settime int h,int m,int s void display 二目的比較運算子過載 bool operator ctime t bool operator ctime t bool operat...

Time 類中的運算子過載

程式的版權和版本宣告部分 檔名稱 time 類中的運算子過載 作 者 馮冬影 完成日期 2014 年 4月 14日 版 本 號 v1.0 對任務及求解方法的描述部分 輸入描述 問題描述 程式輸出 includeusing namespace std class ctime 下面實現所有的運算子過載 ...

Time類中的運算子過載

includeusing namespace std class ctime void settime int h,int m,int s void display 下面實現所有的運算子過載 bool ctime operator ctime t 判斷時間t1 t2 bool ctime opera...