在此程序中,您將通過創(chuàng)建一個(gè)名為Complex的類并將其傳遞給函數(shù)add()來學(xué)習(xí)如何在Java中兩個(gè)復(fù)數(shù)相加。
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); } }
運(yùn)行該程序時(shí),輸出為:
Sum = 5.7 + 9.5i
在上面的程序中,我們創(chuàng)建了一個(gè)Complex具有兩個(gè)成員變量的類:real和imag。顧名思義,real存儲復(fù)數(shù)的實(shí)部,imag存儲虛部。
Complex類有一個(gè)構(gòu)造函數(shù),它初始化real和imag的值。
我們還創(chuàng)建了一個(gè)新的靜態(tài)函數(shù)add(),該函數(shù)將兩個(gè)復(fù)數(shù)作為參數(shù)并將結(jié)果作為復(fù)數(shù)返回。
在add()方法內(nèi)部,我們只將復(fù)數(shù)n1和n2的實(shí)部和虛部相加,將其存儲在新變量temp中并返回temp
然后,在調(diào)用函數(shù)main()中,我們使用printf()函數(shù)進(jìn)行打印。