/* (程式頭部注釋開始)
* 程式的版權和版本宣告部分
* 檔名稱:實現time類中的運算子過載 ,並對運算子的過載進行測試
* 作 者: 朱亞楠
* 完成日期: 2012 年 04 月 09 日
* 版 本 號:
* 對任務及求解方法的描述部分
* 輸入描述:
* 問題描述:
* 程式輸出:
* 程式頭部的注釋結束
*/#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)
bool ctime::operator == (ctime &t)
//二目運算子的過載
ctime ctime::operator+(ctime &c)//返回c所規定的時、分、秒後的時間,例t1(8,20,25),t2(11,20,50),t1+t2為:41:15
t.second=(t.second %60); //秒數應該是sec%=60
}
if (t.minute>59)
if (t.hour>23)
t.hour=(t.hour %24); //此程式不涉及日期,如果設計類datetime,修改將繼續下去
return t;
} ctime ctime::operator-(ctime &c)//對照+理解
ctime ctime::operator+(int s)//返回s秒後的時間
t.second%=60; //秒數應該是sec%=60
}
else if (t.minute>59)
else if (t.hour>23)
t.hour%=24; //此程式不涉及日期,如果設計類datetime,修改將繼續下去
return t;
} ctime ctime::operator-(int s)//返回s秒前的時間
//一目運算子的過載
ctime ctime::operator++(int)//後置++,下一秒
return temp;
} ctime ctime::operator++()//前置++,下一秒
return *this;
} ctime ctime::operator--(int)//後置--,前一秒
return temp;
} ctime ctime::operator--()//前置--,前一秒
return *this;
} //賦值運算子的過載
ctime ctime::operator+=(ctime &c)
ctime ctime::operator-=(ctime &c)
ctime ctime::operator+=(int s)//返回s秒後的時間
ctime ctime::operator-=(int s)//返回s秒前的時間
上機經驗:
真是要多請教同學啊,這**我只能說、真長…… 不過還是被我拿下了,不過還有不很明白的,多看看書,問同學吧。
第8周實驗報告1 1
程式頭部注釋開始 程式的版權和版本宣告部分 檔名稱 作 者 朱亞楠 完成日期 2012 年 4 月 9 日 版 本 號 對任務及求解方法的描述部分 輸入描述 複數相加 a bi c di a c b d i.複數相減 a bi c di a c b d i.複數相乘 a bi c di ac bd ...
第8周實驗報告1
方案一 程式頭部注釋開始 程式的版權和版本宣告部分 檔名稱 複數類 作 者 張旭 完成日期 2012 年 4 月 9 日 版 本 號 略 對任務及求解方法的描述部分 輸入描述 略 問題描述 略 程式輸出 略 程式頭部的注釋結束 include include using namespace std ...
第8周實驗報告1
程式頭部注釋開始 程式的版權和版本宣告部分 檔名稱 定義乙個複數類過載運算子 使之能用於複數的加減乘除。作 者 劉程程 完成日期 2012 年 04 月 9 日 版 本 號 v1.0 對任務及求解方法的描述部分 輸入描述 問題描述 程式輸出 程式頭部的注釋結束 方案一 用類的成員函式完成運算子的過載...