在time類中的運算子過載基礎上
(1)定義對時間物件的自增和自減一目運算子
//一目運算子的過載
ctime operator++(int);//後置++,下一秒
ctime operator++();//前置++,下一秒,前置與後置返回值不一樣
ctime operator--( int);//後置--,前一秒
ctime operator--();//前置--,前一秒
(2)定義time類中的《和》運算子過載,實現時間的輸入輸出,改造原程式中對運算結果顯示方式,使程式讀起來更自然。
參考**
* 檔名稱:test.cpp
* 作 者:冷基棟
* 完成日期:2023年 5 月 8 日
* 版 本 號:v1.0
*/#include using namespace std;
class ctime
;//建構函式
ctime::ctime(int h,int m,int s)
// 設定時間
void ctime::settime(int h,int m,int s)
// 過載輸入運算子》
istream &operator>>(istream &in,ctime &t)
return cin;
}// 過載輸出運算子<<
ostream &operator<
bool ctime::operator < (ctime &t)// 判斷時間t1t.hour) return false;
if (minutet.minute) return false;
if (secondt) return false;
return true;
}bool ctime::operator != (ctime &t) // 判斷時間t1!=t2
bool ctime::operator >= (ctime &t)// 判斷時間t1>=t2
//二目運算子的過載
// 計算時間之和, 返回c所規定的時、分、秒後的時間,例t1(8,20,25),t2(11,20,50),t1+t2為:41:15
ctime ctime::operator + (ctime &t)
if (m>59)
while (h>23) h-=24;
ctime t0(h,m,s);
return t0;
}//返回s秒後的時間
ctime ctime::operator+(int s)
// 計算時間之差
ctime ctime::operator - (ctime &t)
if (m<0)
while (h<0) h+=24;
ctime t0(h,m,s);
return t0;
}//返回s秒前的時間
ctime ctime::operator-(int s)
//一目運算子的過載
ctime ctime::operator++(int)//後置++,下一秒
ctime ctime::operator++()//前置++,下一秒
ctime ctime::operator--(int)//後置--,前一秒
ctime ctime::operator--()//前置--,前一秒
//賦值運算子的過載
ctime ctime::operator+=(ctime &c)
ctime ctime::operator-=(ctime &c)
ctime ctime::operator+=(int s)//返回s秒後的時間
ctime ctime::operator-=(int s)//返回s秒前的時間
int main()
{ ctime t1,t2,t;
cout<
cin>>t1;
cout<
cin>>t2;
cout<
if (t1>t2) cout執行結果:
學習心得:
好好學習 天天向上
第九周專案二Time類中的運算子過載(續)(2)
問題及 檔名稱 test.cpp 作 者 郝俊宇 完成日期 2015年 5 月9 日 版 本 號 v1.0 問題描述 在第八周專案二的基礎上 2 定義time類中的 和 運算子過載,實現時間的輸入輸出,改造原程式中對運算結果顯示方式,使程式讀起來更自然。輸入描述 無 程式輸出 對應的結果 inclu...
第九周專案二
corpyright c 2013,煙台大學計算機學院 all right reseved.完成日期 2014年4月21日 版本號 v1.0 輸入描述 問題描述 時間累!程式輸出 問題分析 演算法設計 include include using namespace std class ctime v...
第九周專案二
檔名稱 完成日期 2014年 04月22號 版本號 v1.0 對任務及求解方法的描述部分 輸入描述 無 問題描述 時間類中的運算子過載 程式輸出 無 問題分析 演算法設計 include using namespace std class ctime ctime ctime int h,int m,...