一个小问题,谁帮我解决一下!!!!!
#include<iostream.h>class Complex
{
public:
Complex(){real=0;imag=0;}
Complex(double r){real=r;imag=0;}
Complex(double r,double i){real=r;imag=i;}
friend Complex operator + (Complex &,Complex &);
void display();
private:
double real;
double imag;
};
Complex operator + (Complex &c1,Complex &c2)
{return Complex(c1.real+c2.real,c1.imag+c2.imag);}
void Complex::display()
{cout<<"("<<real<<","<<imag<<"i)"<<endl;}
int main()
{
Complex c1(3,4),c2(5,-10),c3;
c2=c1+2.5;
c3.display();
return 0;
}
error C2679: binary '+' : no operator defined which takes a right-hand operand of type 'const double' (or there is no acceptable conversion)
执行 cl.exe 时出错.
shixi.obj - 1 error(s), 0 warning(s)