* 對任務及求解方法的描述部分
* 問題描述:實現time類中的運算子過載
* 程式頭部的注釋結束
#include using namespace std;
class ctime
; void settime(int h,int m,int s);
void display();
friend ostream& operator << (ostream&,ctime&);//運算子「<<」過載為友元函式
//比較運算子(二目)的過載
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為19: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 ctime::settime(int h,int m,int s)
//運算子「<<」過載為友元函式
ostream& operator << (ostream& output,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
}
//二目運算子的過載
//返回c所規定的時、分、秒後的時間,例t1(8,20,25),t2(11,20,50),t1+t2為:41:15
ctime ctime::operator+(ctime &c)//先轉換成秒,再相加,然後輸出
//返回c所規定的時、分、秒後的時間
ctime ctime::operator-(ctime &c)//先轉換成秒,再相減,然後輸出
//返回s秒後的時間
ctime ctime::operator+(int s)
} }
return (*this);
} //返回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)
ctime ctime::operator-=(int s)
void main()
{
ctime t1(8,20,25), t2(11,20,50), t;
cout << "t1為:";
cout << t1;
cout << "t2為:";
cout << t2;
cout << "比較兩個時間大小:" << endl;
if (t1 > t2) cout << "t1 > t2" << endl;
if (t1 < t2) cout << "t1 < t2" <= t2) cout << "t1 ≥ t2" << endl;
if (t1 <= t2) cout << "t1 ≤ t2" << endl;
cout<
第九周任務2
include using namespace std class ctime void settime int h,int m,int s 比較運算子 二目 的過載 bool operator ctime t bool operator ctime t bool operator ctime t ...
第九周 任務一
實驗內容 定義complex類中的 和 運算子的過載,實現輸入和輸出。程式的版權和版本宣告部分 檔名稱 定義complex類中的 和 運算子的過載,實現輸入和輸出 作 者 薛廣晨 完成日期 2012 年 4 月 14日 版 本號 x1.0 對任務及求解方法的描述部分 輸入描述 程式頭部的注釋結束 此...
第九周 任務三
實驗內容 定義分數類中 和 運算子過載 程式的版權和版本宣告部分 檔名稱 定義分數類中 和 運算子過載 作 者 薛廣晨 完成日期 2012 年 4 月 14 日 版 本號 x1.0 任務3 接第8周任務3,定義分數類中 和 運算子過載,實現分數的輸入輸出,改造原程式中對運算結果顯示方式,使程式讀起來...