在 C# 中将双精度数正确格式化为字符串?
我想使用 ToString()
打印出双精度数的字符串表示形式而不丢失精度,当我尝试将其格式化为字符串时,我得到以下信息:
double i = 101535479557522.5;
i.ToString(); //displays 101535479557523
如何在 C# 中执行此操作?
I want to print out the string represenation of a double without losing precision using ToString()
I get the following when I try formatting it as a string:
double i = 101535479557522.5;
i.ToString(); //displays 101535479557523
How do I do this in C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您希望它完全相同,您应该使用
i.ToString("r")
(“r”表示往返)。您可以在MSDN 上了解不同的数字格式。If you want it to be exactly the same you should use
i.ToString("r")
(the "r" is for round-trip). You can read about the different numeric formats on MSDN.您正在遇到 Double 精度的限制。来自文档:
如果您想要更高的精度 - 特别是保持十进制表示形式 - 您应该考虑使用
decimal
类型。You're running into the limits of the precision of Double. From the docs:
If you want more precision - and particularly maintaining a decimal representation - you should look at using the
decimal
type instead.