java學習筆記——大資料操作類

來源:互聯網
上載者:User

標籤:

java.math包中提供了兩個大數字操作類:BigInteger(大整數操作類) BigDecimal(大小數操作類).

  • 大整數操作類:BigInteger

BigInteger類構造方法:public BigInteger(String val)

常用方法:public BigInteger add(BigInteger val)

public BigInteger subtract(BigInteger val)

public BigInteger multiply(BigInteger val)

public BigInteger divide(BigInteger val)

public BigInteger[] divideAndRemainder(BigInteger val):第一個數是商第二個數為餘數

public BigInteger pow(int exponent)返回其值為 (thisexponent) 的 BigInteger。注意,exponent 是一個整數而不是 BigInteger。

以上代碼在實際運用中用途並不大,在工作中如果遇到數學問題記得找第三方的開發包。

  • 大小數操作類:BigDecimal

基本方法和操作和BigInteger相同,但BigDecimal擴充了一個非常重要的方法:

Math類中的round()方法進行四捨五入操作過程中採用的是將小數點全部省略的做法,但這種做法在實際用途中並不可取。所以Math.roucnd()是一個沒什麼實際用途的方法,這時候只能利用BigDecimal類完成。

BigDecimal中提供了一個除法操作:public BigDecimal divide(BigDecimal divisor,int scale,int roundingMode)

divisor:被除數

scale:保留的小數位元

roundingMode:進位元模式

(public static final int ROUND_HALF_UP  

public static final int ROUND_HALF_DOWN

class MyMath{    public static double round(double num,int scale){        BigDecimal big=new BigDecimal(num);        BigDecimal res=big.divide(new BigDecimal(1), scale, BigDecimal.ROUND_HALF_UP);//四捨五入所以括弧中使用new BigDecimal(1)        return res.doubleValue();    }}public class BigDecimalDemo {    public static void main(String[] args) {        // TODO Auto-generated method stub        System.out.println(MyMath.round(178.1436534, 6));        System.out.println(MyMath.round(178.1436534, 3));        System.out.println(MyMath.round(178.1436534, 0));    }}
View Code

 

java學習筆記——大資料操作類

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.