Scala BigDecimal 除法
scala BigDecimal 上的除法运算符有什么用?
val d1 = BigDecimal(2)
val d2 = BigDecimal(3)
val div = d1 / d2 //throws ArithmeticException: non-terminating decimal expansion
为了使其正常工作,您需要在小数上定义一个 DECIMAL128
上下文。不幸的是,我能看到的唯一方法是:
val div = new BigDecimal(d1.bigDecimal.divide(d2.bigDecimal, MathContext.DECIMAL128)) //OK!
但这只是一团糟!我错过了什么吗?
What use is the division operator on a scala BigDecimal
?
val d1 = BigDecimal(2)
val d2 = BigDecimal(3)
val div = d1 / d2 //throws ArithmeticException: non-terminating decimal expansion
In order to get this to work, you need to define a DECIMAL128
context on the decimals. Unfortunately the only way I can see of doing this is:
val div = new BigDecimal(d1.bigDecimal.divide(d2.bigDecimal, MathContext.DECIMAL128)) //OK!
But this is just a mess! Am I missing something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 Scala 中的一个已知错误 ->请参阅票证 #1812。显然,它在 Scala 2.8 中得到了修复。您还可以从错误报告下载修复程序,该修复程序实现了附加了
MathContext
的BigDecimal
。使用给定的Decimal.scala
< /a>,我可以编写类似这样的内容并让它运行而不会出现错误:因此,您可以编译给定的 Decimal.scala 文件并将其添加到您的类路径中或者等待 Scala 2.8,它已经在标准库中了。
编辑请参阅Scala标准库的修订版18021了解实现此功能的
BigDecimal
的更改。希望它有帮助:)
-- Flaviu Cipcigan
This is a known bug in Scala -> see Ticket #1812. Apparently, it is fixed in Scala 2.8. You can also download a fix from the bug report which implements a
BigDecimal
with aMathContext
attached to it. Using the givenDecimal.scala
, I can write something like this and get it to run without error:Therefore, you could either compile the given
Decimal.scala
file and add it to yourclasspath
or wait for Scala 2.8, which will already have it in the standard library.EDIT See revision 18021 of the Scala standard library for the changes to
BigDecimal
implementing this.Hope it helps :)
-- Flaviu Cipcigan