BigDecimal类基础
前言
- BigDecimal 是java小數操作的一個專有類,在電商、金融行業 存儲跟金額有關的字段。
- BigDecimal所創建的是對象,我們不能使用傳統的+、-、*、/等算術運算符直接對其對象進行數學運算,而必須調用其相對應的方法。
加減乘除
- 加法 add()函數
- 減法subtract()函數
- 乘法multiply()函數
- 除法divide()函數
比較大小
public int compareTo(BigDecimal val)將此 BigDecimal 與指定的 BigDecimal 比較。根據此方法,值相等但具有不同標度的兩個 BigDecimal 對象(如,2.0 和 2.00)被認為是相等的。相對六個 boolean 比較運算符 (<, ==, >, >=, !=, <=) 中每一個運算符的各個方法,優先提供此方法。建議使用以下語句執行上述比較:(x.compareTo(y) <op> 0),其中 <op> 是六個比較運算符之一。 指定者:返回值: 當此 BigDecimal 在數字上小于、等于或大于 val 時,返回 -1、0 或 1。 num1.compareTo(num2) // -1 num2.compareTo(num1) // 1 new BigDecimal(0.005).compareTo(new BigDecimal(0.005)) // 0設置小數點后小數位數
public BigDecimal setScale(int newScale, int roundingMode)
Returns a BigDecimal whose scale is the specifiedvalue, and whose unscaled value is determined by multiplying ordividing this BigDecimal’s unscaled value by theappropriate power of ten to maintain its overall value. If thescale is reduced by the operation, the unscaled value must bedivided (rather than multiplied), and the value may be changed;in this case, the specified rounding mode is applied to thedivision.
Note that since BigDecimal objects are immutable, calls ofthis method do not result in the original object beingmodified, contrary to the usual convention of having methodsnamed setX mutate field X.Instead, setScale returns an object with the properscale; the returned object may or may not be newly allocated.
The new setScale(int, RoundingMode) method shouldbe used in preference to this legacy method.
| CEILING | 正無窮大方向取整 |
| FLOOR | 負無窮大方向取整 |
| DOWN | 向 0 的方向取整 |
| UP | 正數向正無窮大取整,負數向負無窮大取整 |
| HALF_UP | 5,6,7,8,9 向上取整、 1,2,3,4 向下取整、 常用的4舍5入 |
| HALF_DOWN | 6,7,8,9 向上取整 1,2,3,4,5 向下取整 |
| HALF_EVEN | 小數位是5時,判斷整數部分是奇數就進位、 小數位是5時,判斷整數部分是偶數就舍棄、 1,2,3,4, 舍棄、 6,7,8,9, 進位 |
總結
以上是生活随笔為你收集整理的BigDecimal类基础的全部內容,希望文章能夠幫你解決所遇到的問題。