Time類中的運算子過載

2021-07-12 01:35:01 字數 1316 閱讀 3635

/*

*檔名稱:main.cpp

*作 者:郭輝

*版 本 號:v1.0

**問題描述:專案-time類中的運算子過載

*輸入描述:無。

*程式輸出:兩個數的演算法公式及結果。

*/#includeusing namespace std;

class ctime

;ctime::ctime(int h,int m,int s)

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)

ctime ctime::operator+(ctime &t)

} return c;

}ctime ctime::operator-(ctime &t)

} return c1;*/

int h,m,s;

s=second-t.second;

m=minute-t.minute;

h=hour-t.hour;

if (s<0)

if (m<0)

while (h<0) h+=24;

ctime t0(h,m,s);

return t0;

}ctime ctime::operator+(int s)

ctime ctime::operator-(int s)

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

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

ctime &ctime::operator+=(int s)

ctime &ctime::operator-=(int s)

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

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

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

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

int main()

執行結果:

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...