您的位置:首页 > 编程语言 > C语言/C++

【c++程序】符号的重载与友元

2015-10-22 20:40 381 查看
/********************************************************/
/**************---About   符号的重载-------**************/
/**************---Author: Tibruce Zhao-----**************/
/**************---Date:   2015/10/20------***************/
/********************************************************/

#include<iostream>
using namespace std;

class F
{
//private:
int n;
int d;
//private:
void reduce(){
int mcd=maxcd(n<0?-n:n,d);
if(mcd!=1)
n/=mcd,d/=mcd;
}

public:
/*静态成员函数,使用不依赖某个类,
*调用时,Type::func(),没有当前对象(this)。
*/
static int maxcd(int a,int b){
if(a==0) return b;
return maxcd(b%a,a);
}
F(int n=0,int d=1):n(n),d(d){
if(d==0)
throw  "分母不能为0.";//发现无法处理的异常,扔出去。
if(d<0) d=-d,n=-n;
reduce();
cout<<"F("<<n<<'/'<<d<<")"<<endl;
}
friend ostream& operator<<(ostream& o,const F&f){
o<<f.n<<'/'<<f.d;
return o;
}
friend F operator+(const F& lh,const F& rh){
F res(lh.n*rh.d+lh.d*rh.n,lh.d*rh.d);
return res;
}
/*保证当前对象不被修改*/
F operator*(const F& rh)const{
return F (n*rh.n,d*rh.d);//匿名对象,因为用一次,提高效率

}
};
int main()
{
F f1(6,8);
F f2(6,-9);
F f3(-6,12);
cout<<f1<<','<<f2<<','<<f3<<endl;
cout<<F::maxcd(392,856)<<endl;
cout<<"*****************************"<<endl;
cout<<f1+f2<<','<<f1+f3<<','<<f2+f3<<endl;
cout<<f1+f2+f3<<endl;
cout<<f3*f2<<endl;
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: