AsFloat 转换为字符串
你好 我想将“qrysth.Fields[i].AsFloat”转换为字符串,因此我使用以下代码: FormatFloat('0.###############',qrysth.Fields[i].AsFloat)
但我发现结果字符串是 12.000000000000001 而 qrysth.Fields[i].AsFloat 是 12.00 。我知道FormatFloat实际上不是使用12.00来进行转换,而是使用无限数量的二进制来进行转换。 (就像十进制中的 0.1 是 0.1,但在二进制系统中它是无限数 0.00011001100...)
在上述情况下,还有其他方法可以得到 12.00 吗?或者至少 12.000000000000000 ?
Hi
I want to convert "qrysth.Fields[i].AsFloat" to a string so I use the following code:
FormatFloat('0.###############',qrysth.Fields[i].AsFloat)
but I find the result string is 12.000000000000001 while qrysth.Fields[i].AsFloat is 12.00. I know FormatFloat actually not use 12.00 to do the convert, but use an infinite number of binary to do the convert. (like 0.1 in decimal system is 0.1, but it is an infinite number in binary system 0.00011001100...)
Is there other way I could get 12.00 in the case above? or 12.000000000000000 at least?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您确实得到 12.000000000000001,那么您的字段并不正好包含 12,因此输出是正确的。您通过在格式中放置如此多的
#
字符来要求高精度。如果您不希望如此精确,请使用不太精确的格式字符串。If you really get 12.000000000000001, then your field didn't hold exactly 12, so the output is correct. You asked for high precision by putting so many
#
characters in the format. If you don't want it so precise, then use a less precise format string.FormatFloat('0.00',qrysth.Fields[i].AsFloat)
将给出“12.00”。为了能够得到“12.000000000000000”,您应该自己进行舍入,因为不会损失精度。
FormatFloat('0.00',qrysth.Fields[i].AsFloat)
will give '12.00'.To be able to get '12.000000000000000' you should do the rounding yourself, as there's no loss of precision.
那么为什么不使用AsString呢?
只要您不关心确切的宽度,这将为您提供最佳的表示。如果是,请使用
FormatFloat
以及您需要的确切位数 - 换句话说,如果您要查找12.00
,请使用FormatFloat('## .##', qrysth.Fields[i].AsFloat)
,甚至更好的CurrToStr
和AsCurrency
,因为它们自动使用小数点后两位数字。Then why not use AsString?
This will give you the best representation, as long as you're not concerned about the exact width. If you are, use
FormatFloat
with the exact number of digits you need - in other words, if you're looking for12.00
, useFormatFloat('##.##', qrysth.Fields[i].AsFloat)
, or even betterCurrToStr
andAsCurrency
, as they automatically uses two digits after the decimal point.