Scala BigDecimal 除法

发布于 2024-08-02 21:20:18 字数 407 浏览 3 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柠檬色的秋千 2024-08-09 21:20:18

这是 Scala 中的一个已知错误 ->请参阅票证 #1812。显然,它在 Scala 2.8 中得到了修复。您还可以从错误报告下载修复程序,该修复程序实现了附加了 MathContextBigDecimal。使用给定的 Decimal.scala< /a>,我可以编写类似这样的内容并让它运行而不会出现错误:

val d1 = Decimal128(1)
val d2 = Decimal128(3)
val d3 = d1 / d2 // works, gives a truncated result

因此,您可以编译给定的 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 a MathContext attached to it. Using the given Decimal.scala, I can write something like this and get it to run without error:

val d1 = Decimal128(1)
val d2 = Decimal128(3)
val d3 = d1 / d2 // works, gives a truncated result

Therefore, you could either compile the given Decimal.scala file and add it to your classpath 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文