亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

java復數類怎么實現

小億
116
2023-11-07 19:19:33
欄目: 編程語言

要實現一個Java復數類,你可以按照以下步驟進行:

  1. 創建一個名為Complex的類,并在該類中聲明兩個私有變量,用于表示復數的實部和虛部。可以使用double類型變量來表示這兩個部分。
public class Complex {
    private double real;
    private double imaginary;
    
    // 構造方法、getter和setter等其他方法
}
  1. 實現Complex類的構造方法,以便在創建Complex對象時初始化實部和虛部。
public Complex(double real, double imaginary) {
    this.real = real;
    this.imaginary = imaginary;
}
  1. 提供getter和setter方法,用于獲取和設置實部和虛部的值。
public double getReal() {
    return real;
}

public void setReal(double real) {
    this.real = real;
}

public double getImaginary() {
    return imaginary;
}

public void setImaginary(double imaginary) {
    this.imaginary = imaginary;
}
  1. 實現復數加法和乘法的方法。可以使用以下公式計算兩個復數的和和積:

    • 復數加法:(a + bi) + (c + di) = (a + c) + (b + d)i
    • 復數乘法:(a + bi) * (c + di) = (ac - bd) + (ad + bc)i
public Complex add(Complex other) {
    double realPart = this.real + other.real;
    double imaginaryPart = this.imaginary + other.imaginary;
    return new Complex(realPart, imaginaryPart);
}

public Complex multiply(Complex other) {
    double realPart = this.real * other.real - this.imaginary * other.imaginary;
    double imaginaryPart = this.real * other.imaginary + this.imaginary * other.real;
    return new Complex(realPart, imaginaryPart);
}
  1. 可選:實現toString方法,用于以字符串形式表示復數。
@Override
public String toString() {
    if (imaginary >= 0) {
        return real + " + " + imaginary + "i";
    } else {
        return real + " - " + (-imaginary) + "i";
    }
}

這樣,你就可以使用這個Complex類來表示和操作復數了。例如:

Complex a = new Complex(2, 3);
Complex b = new Complex(4, -1);

Complex sum = a.add(b);
System.out.println("Sum: " + sum);

Complex product = a.multiply(b);
System.out.println("Product: " + product);

輸出結果為:

Sum: 6.0 + 2.0i
Product: 11.0 + 10.0i

0
海兴县| 皮山县| 白朗县| 长汀县| 成武县| 玉门市| 仪陇县| 雷山县| 合川市| 昭苏县| 珲春市| 巴南区| 十堰市| 天镇县| 榆中县| 工布江达县| 聊城市| 拜泉县| 临桂县| 内丘县| 高平市| 新邵县| 资中县| 大理市| 高要市| 宜君县| 科技| 吉水县| 永寿县| 阿克苏市| 阿拉善右旗| 舒城县| 柘荣县| 锦州市| 图片| 加查县| 孟州市| 武强县| 特克斯县| 潍坊市| 榆中县|