complex-numbers复数等于方法 我在Java中制作一个复杂的数字类,如下所示: public class Complex { public final double real, imag; public Complex(double real, double imag) { this.real = real; this.imag = ima……继续阅读 »