📜  Java程序通过将类传递给函数来添加两个复数

📅  最后修改于: 2020-09-26 17:33:36             🧑  作者: Mango

在此程序中,您将通过创建一个名为Complex的类并将其传递给函数 add()来学习如何在Java中添加两个复数。

示例:添加两个复数
public class Complex {

    double real;
    double imag;

    public Complex(double real, double imag) {
        this.real = real;
        this.imag = imag;
    }

    public static void main(String[] args) {
        Complex n1 = new Complex(2.3, 4.5),
                n2 = new Complex(3.4, 5.0),
                temp;

        temp = add(n1, n2);

        System.out.printf("Sum = %.1f + %.1fi", temp.real, temp.imag);
    }

    public static Complex add(Complex n1, Complex n2)
    {
        Complex temp = new Complex(0.0, 0.0);

        temp.real = n1.real + n2.real;
        temp.imag = n1.imag + n2.imag;

        return(temp);
    }
}

输出

Sum = 5.7 + 9.5i

在上面的程序中,我们创建了带有两个成员变量的Complex类: realimag 。顾名思义, 实数存储复数的实部,而imag存储虚数。

Complex类具有一个构造函数,用于初始化realimag的值。

我们还创建了一个新的静态函数 add() ,该函数 add()两个复数作为参数并将结果作为复数返回。

add()方法内部,我们只添加复数n1n2的实部和虚部,将其存储在新变量temp中,然后返回temp

然后,在调用函数 main() ,我们使用printf() 函数打印。