C# 无限有效小数位(任意精度),无需 java
可能的重复:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 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.