117.info
人生若只如初见

c++ complex类的运算符重载如何实现

在C++中,std::complex是一个模板类,用于表示复数。它已经为你提供了一系列运算符重载,例如+-*/,以及相等和不等运算符。然而,如果你想要自定义一个复数类并实现这些运算符重载,以下是一个简单的示例:

#include

class Complex {
public:
    Complex(double real, double imag) : real_(real), imag_(imag) {}

    // Getters
    double real() const { return real_; }
    double imag() const { return imag_; }

    // Operator overloads
    Complex operator+(const Complex& other) const {
        return Complex(real_ + other.real_, imag_ + other.imag_);
    }

    Complex operator-(const Complex& other) const {
        return Complex(real_ - other.real_, imag_ - other.imag_);
    }

    Complex operator*(const Complex& other) const {
        double real_part = real_ * other.real_ - imag_ * other.imag_;
        double imag_part = real_ * other.imag_ + imag_ * other.real_;
        return Complex(real_part, imag_part);
    }

    Complex operator/(const Complex& other) const {
        double denominator = other.real_ * other.real_ + other.imag_ * other.imag_;
        double real_part = (real_ * other.real_ + imag_ * other.imag_) / denominator;
        double imag_part = (imag_ * other.real_ - real_ * other.imag_) / denominator;
        return Complex(real_part, imag_part);
    }

    bool operator==(const Complex& other) const {
        return real_ == other.real_ && imag_ == other.imag_;
    }

    bool operator!=(const Complex& other) const {
        return !(*this == other);
    }

private:
    double real_;
    double imag_;
};

int main() {
    Complex a(3, 4);
    Complex b(1, 2);

    Complex c = a + b;
    Complex d = a - b;
    Complex e = a * b;
    Complex f = a / b;

    std::cout << "a + b = (" << c.real() << ", " << c.imag() << ")\n";
    std::cout << "a - b = (" << d.real() << ", " << d.imag() << ")\n";
    std::cout << "a * b = (" << e.real() << ", " << e.imag() << ")\n";
    std::cout << "a / b = (" << f.real() << ", " << f.imag() << ")\n";

    return 0;
}

这个示例中的Complex类实现了加法、减法、乘法和除法运算符重载。同时还实现了相等和不等运算符重载。注意,这里的运算符重载函数都是const成员函数,因为它们不应该修改对象的状态。

未经允许不得转载 » 本文链接:https://www.117.info/ask/fe674AzsOAQ9TAA.html

推荐文章

  • c#的for循环中如何实现递归调用

    在C#的for循环中实现递归调用并不是一个常见的做法,因为递归和循环本身就是两种不同的控制结构。但是,如果你确实需要在for循环中进行递归调用,可以通过将递归...

  • c#的for循环中如何进行数据排序

    在C#的for循环中进行数据排序,你可以使用不同的排序算法,例如冒泡排序、选择排序或插入排序等。这里我将给出一个使用冒泡排序的示例:
    using System; cla...

  • c# drawing如何实现渐变效果

    在C#中,你可以使用System.Drawing命名空间中的类和方法来实现渐变效果。以下是一个简单的示例,展示了如何在Windows Forms应用程序中绘制一个具有线性渐变效果的...

  • c# drawing中如何处理图像旋转

    在C#中,使用System.Drawing命名空间处理图像旋转的方法如下: 首先,引入必要的命名空间: using System.Drawing;
    using System.Drawing.Drawing2D; 创建一...

  • complex类如何处理复数的共轭

    在Python中,complex类用于处理复数
    以下是一个示例:
    # 创建一个复数
    z = complex(3, 4) # 计算共轭
    conjugate_z = z.conjugate() print("...

  • c++ complex类的成员函数有哪些

    C++中的complex类是在头文件中定义的,用于表示和操作复数。以下是一些常用的complex类的成员函数: 构造函数 complex(T real = 0, T imag = 0):创建一个复数,...

  • complex类在c++中的构造方法有哪些

    在C++中,std::complex是一个模板类,用于表示复数 默认构造函数:创建一个复数对象,其实部和虚部都初始化为0。 std::complex c1; // c1 = (0, 0) 单参数构造函...

  • c++ complex类如何实现复数运算

    C++中的complex类是一个模板类,用于表示和操作复数。它在头文件中定义。要使用complex类,首先需要包含该头文件。
    以下是一些基本的复数运算示例:
    #...