我无法使用重载运算符(* =)来降低与a(ac-bd)+(ad + bc)相同的函数(a + bi)*(c + di)的算术运算 到目前为止,我有这个为我的重载功能。对于我对超载的定义* =我不知道要写什么来包含(ac-bd)的-bd部分。
#include <iostream>
using std::cout;
using std::cin;
using std::endl;
class Complex {
public:
Complex(double = 0, double = 0);
void print() const { cout << real << '\t' << imag << '\n'; }
// Overloaded +=
Complex& operator +=(const Complex&);
// Overloaded -=
Complex& operator -=(const Complex&);
// Overloaded *=
Complex& operator *=(const Complex&);
// Overloaded /=
Complex& operator /=(const Complex&);
double Re() const { return real; }
double Im() const { return imag; }
private:
double real, imag;
};
int main()
{
Complex x, y(2), z(3, 4.5), a(1, 2), b(3, 4);
x.print();
y.print();
z.print();
y += z;
y.print();
a *= b;
a.print();
return 0;
}
Complex::Complex(double reel, double imaginary)
{
real = reel;
imag = imaginary;
}
// Return types that matches the one in the prototype = &Complex
Complex& Complex::operator+=(const Complex& z)
{
real += z.Re();
imag += z.Im();
//How to get an object to refer to itself
return *this;
}
Complex& Complex::operator *= (const Complex& z)
{
real *= (z.Re());
imag *= z.Re();
return *this;
}
答案 0 :(得分:3)
您可以使用std::tie
和std::make_tuple
执行多项作业:
std::tie(real, imag) = std::make_tuple(real*z.real - imag*z.imag,
real*z.imag + imag*z.real);
return *this;