91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java定義復數的方法

發布時間:2020-09-17 09:42:58 來源:億速云 閱讀:272 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關java定義復數的方法的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。

java創建一個復數類complex,對復數進行數學運算,復數具有如下格式:RealPart+ImaginaryPart*i,其中,i為-1的平方根,具體要求如下:

(1)利用浮點變量表示此類的私有數據。提供兩個構造方法,一個用于此類聲明時對象的初始化;一個為帶默認值得無參構造方法。

(2)提供兩復數加、減、乘的運算方法。

(3)按格式(a,b)打印復數,其中a為實部,b為虛部。

Java代碼如下:

public class ComplexNumber implements Cloneable {
    private double realPart;  //復數的實部
    private double imaginaryPart;  //復數的虛部

    public ComplexNumber() {  //默認構造函數
        this.realPart = 0.0;
        this.imaginaryPart = 0.0;
    }

    public ComplexNumber(double a, double b) {  //重載構造函數
        this.realPart = a;
        this.imaginaryPart = b;
    }

    /**
     * 復數的加法運算 c = a + b的運算法則是:
     * c.實部 = a.實部 + b.實部
     * c.虛部 = a.虛部 + b.虛部
     */
    public ComplexNumber add(ComplexNumber aComNum) {
        if (aComNum == null) {
            System.err.println("對象不能夠為null!");
            return new ComplexNumber();
        }
        return new ComplexNumber(this.realPart + aComNum.getRealPart(), this.imaginaryPart + aComNum.getImaginaryPart());
    }

    /**
     * 復數的減法運算 c = a - b的運算法則是:
     * c.實部 = a.實部 - b.實部
     * c.虛部 = a.虛部 - b.虛部
     */
    public ComplexNumber decrease(ComplexNumber aComNum) {
        if (aComNum == null) {
            System.err.println("對象不能夠為null!");
            return new ComplexNumber();
        }
        return new ComplexNumber(this.realPart - aComNum.getRealPart(), this.imaginaryPart - aComNum.getImaginaryPart());
    }

    /**
     * 復數的乘法運算 c = a * b的運算法則是:
     * c.實部 = a.實部 * b.實部 - a.虛部 * b.虛部
     * c.虛部 = a.虛部 * b.實部 + a.實部 * b.虛部
     */
    public ComplexNumber multiply(ComplexNumber aComNum) {
        if (aComNum == null) {
            System.err.println("對象不能夠為null!");
            return new ComplexNumber();
        }
        double newReal = this.realPart * aComNum.realPart - this.imaginaryPart * aComNum.imaginaryPart;
        double newImaginary = this.realPart * aComNum.imaginaryPart + this.imaginaryPart * aComNum.realPart;
        ComplexNumber result = new ComplexNumber(newReal, newImaginary);
        return result;
    }

    /**
     * 復數的除法運算 c = a / b 的運算法則是:
     * c.實部 = (a.實部 * b.實部 + a.虛部 * b.虛部) / (b.實部* b.實部 + b.虛部 * b.虛部)
     * c.虛部 = (a.虛部 * b.實部 - a.實部 * b.虛部) / (b.實部 * b.實部 + b.虛部 * b.虛部)
     */
    public ComplexNumber divide(ComplexNumber aComNum) {
        if (aComNum == null) {
            System.err.println("對象不能夠為null!");
            return new ComplexNumber();
        }
        if ((aComNum.getRealPart() == 0) && (aComNum.getImaginaryPart() == 0)) {
            System.err.println("除數不能夠為0!");
            return new ComplexNumber();
        }
        double temp = aComNum.getRealPart() * aComNum.getRealPart() + aComNum.getImaginaryPart() * aComNum.getImaginaryPart();
        double crealpart = (this.realPart * aComNum.getRealPart() + this.imaginaryPart * aComNum.getImaginaryPart()) / temp;
        double cimaginaryPart = (this.imaginaryPart * aComNum.getRealPart() - this.realPart * aComNum.getImaginaryPart()) / temp;
        return new ComplexNumber(crealpart, cimaginaryPart);
    }

    public String toString() {  //將一個復數顯示為字符串
        return this.realPart + " + " + this.imaginaryPart + "i";
    }

    public boolean equals(Object obj) {  //比較一個對象是否和這個復數對象的值相等
        if (obj == null) {
            return false;
        }
        //首先判斷a是不是一個復數對象,instanceof關鍵字是用來判斷對象的類型
        if (obj instanceof ComplexNumber) {
            //如果a是復數對象,需要將它強制類型轉換成復數對象,才能調用復數類提供的方法
            ComplexNumber b = (ComplexNumber) obj;
            if ((this.realPart == b.getRealPart()) && (this.imaginaryPart == b.getImaginaryPart())) {
                return true;
            } else {
                return false;
            }
        } else {
            return false;
        }
    }

    public int hashCode() {  //獲得該復數對象的hashcode
        /**
         * 如果兩個復數對象是equals的,那么它們的hashCode也必須相同
         * 兩個值相等的復數對象通過toString()方法得到的輸出字符串是一樣的
         * 于是,可以把得到的字符串的hashCode當作復數對象的hashCode
         */
        return this.toString().hashCode();
    }

    public Object clone() {  //根據現有對象克隆一個新對象
        /**
         * 如果要使自定義的類能夠被clone,就必須實現Cloneable接口并且重寫它的clone()方法
         * 如果僅僅重寫了clone方法而沒有在類的聲明中添加實現Cloneable接口
         * 調用clone方法時將會出現CloneNotSupportedException異常
         */
        try {
            ComplexNumber newObject = (ComplexNumber) super.clone();
            newObject.setRealPart(this.realPart);
            newObject.setImaginaryPart(this.imaginaryPart);
            return newObject;
        } catch (CloneNotSupportedException e) {  //如果沒有實現Cloneable接口,拋出異常

            e.printStackTrace();
            return null;
        }
    }

    public double getImaginaryPart() {  //返回虛部
        return imaginaryPart;
    }

    public void setImaginaryPart(double imaginaryPart) {  //設置虛部
        this.imaginaryPart = imaginaryPart;
    }

    public double getRealPart() {  //返回實部
        return realPart;
    }

    public void setRealPart(double realPart) {  //設置實部
        this.realPart = realPart;
    }

    public static void main(String[] args) throws CloneNotSupportedException {
        ComplexNumber a = new ComplexNumber(20, 15);
        ComplexNumber b = new ComplexNumber(11, 20);
        System.out.println("ComplexNumber a: " + a.toString());
        System.out.println("ComplexNumber b: " + b.toString());
        System.out.println("(a + b) = " + a.add(b).toString());
        System.out.println("(a - b) = " + a.decrease(b).toString());
        System.out.println("(a * b) = " + a.multiply(b).toString());
        System.out.println("(a / b) = " + a.divide(b).toString());
    }
}

感謝各位的閱讀!關于java定義復數的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

友谊县| 工布江达县| 治县。| 阳泉市| 河北区| 云林县| 基隆市| 光山县| 西藏| 闽清县| 芮城县| 沙湾县| 宁德市| 丽江市| 公主岭市| 千阳县| 大名县| 那坡县| 鹤峰县| 织金县| 普格县| 卓尼县| 浪卡子县| 临夏县| 永昌县| 丰县| 根河市| 河北省| 庆城县| 焦作市| 包头市| 崇信县| 湘潭市| 广东省| 广饶县| 临漳县| 灵宝市| 曲靖市| 焉耆| 宜川县| 永安市|