本文介绍了如何在Java中将BigDecimal转换为Double?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我们如何将 BigDecimal
转换为java中的 Double
?我有一个要求,我们必须使用Double作为参数,但我们得到 BigDecimal
所以我必须将 BigDecimal
转换为 Double
。
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
so i have to convert BigDecimal
into Double
.
推荐答案
您需要使用从BigDecimal对象获取double值的方法。
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
这篇关于如何在Java中将BigDecimal转换为Double?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!