运算符重载为友元函数
摘要:
运算符重载为类的友元函数,就必须把操作数全部通过形参的方式传递给运算符重载函数。如:class complex{public: complex(double x,double y):real(x),imag(y) {} //friend complex operator + (complex c1,complex c2); //友元函数 //friend complex operator - (complex c1,complex c2); complex operator +(complex c2) //非友元函数定义 { return complex(real + c2.r... 阅读全文
posted @ 2011-10-02 20:36 漩涡鸣人 阅读(562) 评论(0) 推荐(0) 编辑