C(++) 中的 sprintf、逗号和点(以及本地化?)
我正在使用 openframeworks 进行一个项目,最近在编写 XML 时遇到了一些问题。我已经将问题追溯到 sprintf:
似乎在某些条件下 sprintf 调用可能会在浮点数上写逗号而不是点(例如“2,56”而不是“2.56”)。在我的语言环境中,浮点数用“,”表示,以将小数与单位分开。
我无法在一个简单的示例中重现此行为,但我通过使用字符串流对值进行字符串化解决了该问题。
我很好奇 sprintf 使用不同本地化的情况。当 sprintf 使用“,”而不是“.”时以及如何控制它?
I am working in a project using openframeworks and I've been having some problems lately when writing XMLs. I've traced down the problem to a sprintf:
It seems that under certain conditions an sprintf call may write commas instead of dots on float numbers (e.g. "2,56" instead of "2.56"). In my locale the floating numbers are represented with a ',' to separate the decimals from the units.
I am unable to reproduce this behaviour in a simple example, but I've solved the problem by stringifying the value using a stringstream.
I am curious about the circumstances of sprintf using a different localization. When sprintf uses ',' instead of '.' and how to control it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
小数点分隔符由
LC_NUMERIC
区域设置变量控制。设置setlocale
了解详细信息。将其设置为“C”区域设置将为您提供一个句点。您可以通过查看localeconv
。The decimal separator is controlled by the
LC_NUMERIC
locale variable. Setsetlocale
for details. Setting it to the "C" locale will give you a period. You can find out the characters and settings for the current locale by looking in the (read-only) struct returned bylocaleconv
.