How to convert BigDecimal to Double in Java?

后端 未结 3 616
无人及你
无人及你 2021-01-30 03:48

How we convert BigDecimal into Double in java? I have a requirement where we have to use Double as argument but we are getting BigDecimal

相关标签:
3条回答
  • 2021-01-30 04:09

    Use doubleValue method present in BigDecimal class :

    double doubleValue()
    

    Converts this BigDecimal to a double.

    0 讨论(0)
  • 2021-01-30 04:23

    You need to use the doubleValue() method to get the double value from a BigDecimal object.

    BigDecimal bd; // the value you get
    double d = bd.doubleValue(); // The double you want
    
    0 讨论(0)
  • 2021-01-30 04:24

    You can convert BigDecimal to double using .doubleValue(). But believe me, don't use it if you have currency manipulations. It should always be performed on BigDecimal objects directly. Precision loss in these calculations are big time problems in currency related calculations.

    0 讨论(0)
提交回复
热议问题