已知两个复数,在C++中如何运用运算符重载实现两个复数的加运算
Complex Complex::operator+(const Complex& rh) { return Complex(this->shibu+rh.shibu,this->xubu+rh.xb); }