/*univercity:煙台大學
*@class計134~4
*@author:薛富磊
*@time:2014-5-27
*@function:在專案1的基礎上,在圓類上過載關係運算子(6種),使之能夠按圓的面積比較兩個圓的大小。
自編main函式完成測試。
*@args:
*@return:
*/#include #includeusing namespace std;
class point
//建構函式
protected: //受保護成員
double x,y;
};class circle:public point //circle是point類的公用派生類
; //建構函式
double area ( ) const; //計算圓面積
friend ostream &operator<
bool operator>(const circle &);
bool operator
bool operator>=(const circle &);
bool operator<=(const circle &);
bool operator==(const circle &);
bool operator!=(const circle &);
protected:
double radius;
};double circle::area ( ) const
//過載運算子「<
Unit5 problem3 形體藝術
univercity 煙台大學 class計134 4 author 薛富磊 time 2014 3 18 function 長方柱類 args return include includeusing namespace std class bulk double volume 體積 double ...
Unit9 problem1 複數大排練
univercity 煙台大學 class計134 4 author 薛富磊 time 2014 4 28 function 複數 args return include includeusing namespace std class complex complex operator 實現輸入 輸...
Unit6 problem3 二類共享
univercity 煙台大學 class計134 4 author 薛富磊 time 2014 4 2 function 回想engineer類的資料成員,有眼鏡 揹包等。某engineer的眼鏡 揹包,是glass bag類的物件。類中的資料成員,其型別可以是簡單型別,也可以是類.通過這種方式,...