legongju.com
我们一直在努力
2025-01-08 11:37 | 星期三

如何用C++自定义复数类模板

在C++中,你可以使用类模板来创建一个自定义的复数类

#include 
#include 

template 
class Complex {
public:
    // 构造函数
    Complex(T real, T imag) : real_(real), imag_(imag) {}

    // 获取实部和虚部
    T real() const { return real_; }
    T imag() const { return imag_; }

    // 加法
    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 {
        T real_part = real_ * other.real_ - imag_ * other.imag_;
        T imag_part = real_ * other.imag_ + imag_ * other.real_;
        return Complex(real_part, imag_part);
    }

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

private:
    T real_;
    T imag_;
};

int main() {
    Complex c1(3, 4);
    Complex c2(1, 2);

    Complex sum = c1 + c2;
    Complex diff = c1 - c2;
    Complex prod = c1 * c2;
    Complex quot = c1 / c2;

    std::cout << "Sum: " << sum.real() << " + " << sum.imag() << "i\n";
    std::cout << "Difference: " << diff.real() << " + " << diff.imag() << "i\n";
    std::cout << "Product: " << prod.real() << " + " << prod.imag() << "i\n";
    std::cout << "Quotient: " << quot.real() << " + " << quot.imag() << "i\n";

    return 0;
}

这个例子展示了如何创建一个名为Complex的类模板,它可以用于表示复数。这个类模板包含了复数的基本操作,如加法、减法、乘法和除法。在main函数中,我们创建了两个复数对象c1c2,并执行了这些操作。

未经允许不得转载 » 本文链接:https://www.legongju.com/article/91655.html

相关推荐

  • c#的for循环中如何优化内存使用

    c#的for循环中如何优化内存使用

    在C#的for循环中优化内存使用,可以采取以下几种方法: 使用局部变量:在循环内部声明和使用变量,这样可以减少变量的作用域,从而减少内存占用。当循环结束时,...

  • c#的for循环中如何进行异常处理

    c#的for循环中如何进行异常处理

    在C#的for循环中进行异常处理,可以使用try-catch语句。将可能引发异常的代码放在try块中,然后在catch块中处理异常。这是一个示例:
    using System; class ...

  • c#的for循环中如何实现条件控制

    c#的for循环中如何实现条件控制

    在C#的for循环中,你可以使用条件语句(如if语句)来控制循环内部的执行。下面是一个示例:
    using System; class Program
    { static void Main() { for...

  • c#的for循环中如何处理大数据量

    c#的for循环中如何处理大数据量

    在C#中处理大数据量时,使用for循环可能会导致性能问题。为了解决这个问题,你可以采用以下方法: 分批处理:将大数据集分成较小的批次进行处理。这样可以减少内...

  • C++复数类支持哪些数学函数

    C++复数类支持哪些数学函数

    C++ 的复数类(std::complex)位于 头文件中,提供了一系列用于处理复数的数学函数。以下是一些常见的复数操作: 加法: operator+
    减法: operator-
    乘...

  • C++复数类如何实现加减运算

    C++复数类如何实现加减运算

    在 C++ 中,复数类(std::complex)已经为我们提供了复数的加法和减法运算。以下是一个简单的示例,展示了如何使用 std::complex 进行复数的加法和减法运算:

  • Python中duplicated()函数的潜在问题及解决方法

    Python中duplicated()函数的潜在问题及解决方法

    在Python中,并没有一个名为duplicated()的内置函数 重复值的定义不明确:如果你想找到列表中所有重复的元素,你需要明确指出。在这种情况下,你可以使用一个简单...

  • 如何测试Python中duplicated()函数的正确性

    如何测试Python中duplicated()函数的正确性

    要测试 Python 中的 duplicated() 函数的正确性,首先需要明确这个函数的功能和预期行为
    def duplicated(elements): """ 判断列表中是否有重复元素。 参数:...