C(++) 中的 sprintf、逗号和点(以及本地化?)

发布于 2024-09-19 09:44:33 字数 279 浏览 4 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

树深时见影 2024-09-26 09:44:43

小数点分隔符由LC_NUMERIC 区域设置变量控制。设置 setlocale 了解详细信息。将其设置为“C”区域设置将为您提供一个句点。您可以通过查看 localeconv

The decimal separator is controlled by the LC_NUMERIC locale variable. Set setlocale 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 by localeconv.

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