當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java BigDecimal add()用法及代碼示例


java.math.BigDecimal.add(BigDecimal val)用於計算兩個BigDecimal的算術和。此方法用於查找大量算術加法,該算術加法遠大於Java的最大數據類型double的範圍,而不會影響結果的精度。此方法對當前的BigDecimal進行操作,調用該方法並將BigDecimal作為參數傳遞。

Java中有兩種add方法的重載,如下所示:

  • add(BigDecimal val)
  • add(BigDecimal val,MathContext mc)

add(BigDecimal val)

用法:


public BigDecimal add(BigDecimal val)

參數:此方法接受參數val,該參數是要添加到此BigDecimal的值。

返回值:此方法返回一個BigDecimal,其中包含sum(this + val),其小數位數為max(this.scale(),val.scale())。

下麵的程序用於說明BigDecimal的add()方法。

// Java program to demonstrate 
// add() method of BigDecimal 
  
import java.math.BigDecimal; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // BigDecimal object to store the result 
        BigDecimal sum; 
  
        // For user input 
        // Use Scanner or BufferedReader 
  
        // Two objects of String created 
        // Holds the values to calculate the sum 
        String input1 
            = "545456468445645468464645"; 
        String input2 
            = "4256456484464684864864"; 
  
        // Convert the string input to BigDecimal 
        BigDecimal a 
            = new BigDecimal(input1); 
        BigDecimal b 
            = new BigDecimal(input2); 
  
        // Using add() method 
        sum = a.add(b); 
  
        // Display the result in BigDecimal 
        System.out.println("The sum of\n"
                           + a + " \nand\n" + b + " "
                           + "\nis\n" + sum + "\n"); 
    } 
}

輸出:

The sum of
545456468445645468464645
and
4256456484464684864864
is
549712924930110153329509

add(BigDecimal val, MathContext mc)

用法:

public BigDecimal add(BigDecimal val, MathContext mc)

參數:此方法接受兩個參數,一個是val,這是要添加到此BigDecimal的值,另一個是MathContext類型的mc。

返回值:此方法返回一個BigDecimal,其中保存sum(this + val),並根據上下文設置進行舍入。如果任一數字為零且精度設置為非零,則將另一個數字(必要時四舍五入)用作結果。

下麵的程序用於說明BigDecimal的add()方法。

// Java program to demonstrate 
// add() method of BigDecimal 
  
import java.math.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // BigDecimal object to store the result 
        BigDecimal sum; 
  
        // For user input 
        // Use Scanner or BufferedReader 
  
        // Two objects of String created 
        // Holds the values to calculate the sum 
        String input1 
            = "9854228445645468464645"; 
        String input2 
            = "4252145764464684864864"; 
  
        // Convert the string input to BigDecimal 
        BigDecimal a 
            = new BigDecimal(input1); 
        BigDecimal b 
            = new BigDecimal(input2); 
  
        // Set precision to 10 
        MathContext mc 
            = new MathContext(10); 
        // Using add() method 
        sum = a.add(b, mc); 
  
        // Display the result in BigDecimal 
        System.out.println("The sum of\n"
                           + a + " \nand\n" + b + " "
                           + "\nis\n" + sum + "\n"); 
    } 
}

輸出:

The sum of
9854228445645468464645
and
4252145764464684864864
is
1.410637421E+22

參考文獻:https://docs.oracle.com/javase/7/docs/api/java/math/BigDecimal.html#add(java.math.BigDecimal)



相關用法


注:本文由純淨天空篩選整理自Rajnis09大神的英文原創作品 BigDecimal add() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。