C# 无限有效小数位(任意精度),无需 java

发布于 2024-10-02 05:11:46 字数 540 浏览 5 评论 0原文

可能的重复:
java 类的等价物是什么:C# 中的 BigDecimal< /a>

我在这篇文章中知道: C# 中的任意精度小数? 说使用java.math.BigDecimal,但我没有安装 J#。如何在 C# 中实现任意精度?我正在考虑使用二进制字符串,但在将两者相乘时可能会遇到一些麻烦。

Possible Duplicate:
what is the equivalent for java class : BigDecimal in c#

I know in this post: Arbitrary precision decimals in C#? says to use java.math.BigDecimal, but I don't have J# installed. How would I achieve arbitrary precision in C#? I was thinking of using binary strings but I may run into some trouble when multiplying the two.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

神经大条 2024-10-09 05:11:46

请参阅 C# 中的 Java BigDecimal 类等效项是什么?

您可以创建自己的 BigDecimal,它在幕后使用 BigInteger 并跟踪小数点需要在哪里。

See What is the equivalent of the Java BigDecimal class in C#?

You could create your own BigDecimal that used BigInteger under the covers and kept track of where the decimal point would need to be.

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