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

溫馨提示×

溫馨提示×

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

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

Java高精度計算BigDecimal類實例分析

發布時間:2022-01-12 10:42:48 來源:億速云 閱讀:166 作者:iii 欄目:編程語言

這篇文章主要介紹了Java高精度計算BigDecimal類實例分析的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Java高精度計算BigDecimal類實例分析文章都會有所收獲,下面我們一起來看看吧。

如果我們編譯運行下面這個程序會看到什么?

public class Test{

   public static void main(String args[]){

       System.out.println(0.05+0.01);

       System.out.println(1.0-0.42);

       System.out.println(4.015*100);

       System.out.println(123.3/100);

   }

}; 你沒有看錯!結果確實是 0.060000000000000005 0.5800000000000001 401.49999999999994 1.2329999999999999 Java中的簡單浮點數類型floatdouble不能夠進行運算。

不光是Java,在其它很多編程語言中也有這樣的問題。在大多數情況下,計算的結果是準確的,但是多試幾次(可以做一個循環)就可以試出類似上面的錯誤。

現在終于理解為什么要有BCD碼了。這個問題相當嚴重,如果你有9.999999999999元,你的計算機是不會認為你可以購買10元的商品的。

在有的編程語言中提供了專門的貨幣類型來處理這種情況,但是Java沒有。現在讓我們看看如何解決這個問題。

四舍五入我們的第一個反應是做四舍五入。Math類中的round方法不能設置保留幾位小數,我們只能象這樣(保留兩位):

public double round(double value){

   return Math.round(value*100)/100.0;

} 非常不幸,上面的代碼并不能正常工作,給這個方法傳入4.015它將返回4.01而不是4.02,如我們在上面看到的 4.015*100=401.49999999999994

因此如果我們要做到精確的四舍五入,不能利用簡單類型做任何運算也不能解決這個問題:

System.out.println(new java.text.Decimal Format("0.00").format(4.025)); 輸出是4.02

[@more@]

Big Decimal 在《Effective Java》這本書中也提到這個原則,floatdouble只能用來做科學計算或者是工程計算,

在商業計算中我們要用java.math.Big Decimal?Big Decimal一共有4個夠造方法,我們不關心用Big Integer?來夠造的那兩個,那么還有兩個,

它們是: Big Decimal(double val) Translates a double into a Big Decimal.

Big Decimal(String val) Translates the String repre sentation of a Big Decimal into a Big Decimal.

上面的API簡要描述相當的明確,而且通常情況下,上面的那一個使用起來要方便一些。我們可能想都不想就用上了,會有什么問題呢?

等到出了問題的時候,才發現上面哪個夠造方法的詳細說明中有這么一段: Note: the results of this constructor can be somewhat unpredictable.

One might assume that new Big Decimal(.1) is exactly equal to .1, but it is actually equal to .1000000000000000055511151231257827021181583404541015625.

This is so because .1 cannot be represented exactly as a double (or, for that matter, as a binary fraction of any finite length).

Thus, the long value that is being passed in to the constructor is not exactly equal to .1, appearances nonwithstanding.

The (String) constructor, on the other hand, is perfectly predictable: new Big Decimal(".1") is exactly equal to .1, as one would expect.

Therefore, it is generally recommended that the (String) constructor be used in preference to this one.

原來我們如果需要精確計算,非要用String來夠造Big Decimal不可!在《Effective Java》一書中的例子是用String來夠造Big Decimal的,

但是書上卻沒有強調這一點,這也許是一個小小的失誤吧。

解決方案現在我們已經可以解決這個問題了,原則是使用Big Decimal并且一定要用String來夠造。但是想像一下吧,如果我們要做一個加法運算,

需要先將兩個浮點數轉為String,然后夠造成Big Decimal,在其中一個上調用add方法,傳入另一個作為參數,然后把運算的結果(Big Decimal)再轉換為浮點數。

你能夠忍受這么煩瑣的過程嗎?下面我們提供一個工具類Arith來簡化操作。它提供以下靜態方法,包括加減乘除和四舍五入:

public static double add(double v1,double v2)

public static double sub(double v1,double v2)

public static double mul(double v1,double v2)

public static double div(double v1,double v2)

public static double div(double v1,double v2,int scale)

public static double round(double v,int scale)

關于“Java高精度計算BigDecimal類實例分析”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“Java高精度計算BigDecimal類實例分析”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

留坝县| 新巴尔虎右旗| 邢台市| 个旧市| 宣汉县| 黄梅县| 涟水县| 保德县| 九龙县| 长治县| 射洪县| 左云县| 南漳县| 皋兰县| 益阳市| 同德县| 张家港市| 丘北县| 玉树县| 岢岚县| 南召县| 黄平县| 五莲县| 文登市| 汉沽区| 邻水| 崇仁县| 东港市| 天祝| 伽师县| 和平县| 包头市| 华蓥市| 鹿泉市| 洪江市| 山西省| 南阳市| 眉山市| 宜丰县| 邻水| 临洮县|