/*(檔案注釋頭部開始)
*程式的版權和版本宣告部分
*檔名稱:
*作 者:劉楊
*完成日期:2012 年 4 月 16 號
*版本號:vc
* 對任務及求解方法的描述部分
* 輸入描術:
* 問題描述:定義time類中的《和》運算子過載,實現時間的輸入輸出
* 程式輸出:
* 程式頭部的注釋結束
*/
#include using 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)
else }
bool ctime::operator < (ctime &t)
else }
bool ctime::operator >= (ctime &t)
else }
bool ctime::operator <= (ctime &t)
else }
bool ctime::operator == (ctime &t)
else }
bool ctime::operator != (ctime &t)
else }
//二目運算子的過載
ctime ctime::operator+(ctime &c)
if(t.minute > 60)
if(t.hour > 24)
return t;
}//對照+理解
ctime ctime::operator-(ctime &c)
if(m < 0)
if(h < 0)
ctime t(h,m,s);
return t;
}//返回s秒後的時間
ctime ctime::operator+(int s)
return t;
}//返回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)
//返回s秒後的時間
ctime ctime::operator+=(int s)
//返回s秒前的時間
ctime ctime::operator-=(int s)
//為簡化程式設計,請注意通過呼叫已有函式,利用好各函式之間的關係
void main()
執行結果:
第九周任務二
include using namespace std class ctime ctime ctime int h,int m,int s void ctime settime int h,int m,int s ostream operator ostream output,ctime t 比較運...
第九周任務(二)
作 者 劉洋 完成日期 2012 年 4 月 16 日 版 本 號 1.0 對任務及求解方法的描述部分 輸入描述 時間 問題描述 時間流運算子過載 程式輸出 程式頭部的注釋結束 include using namespace std class ctime void settime int h,in...
第九周 任務二
程式頭部注釋開始 程式的版權和版本宣告部分 檔名稱 cpp 作 者 計114 4 劉向一 完成日期 2012 年 4月17日 版 本 號 v 1.0 對任務及求解方法的描述部分 輸入描述 問題描述 程式輸出 程式頭部的注釋結束 include class ctime ctime ctime int ...