打印 QString 中的尾随零

发布于 2024-07-21 05:48:50 字数 307 浏览 8 评论 0原文

我正在使用 Qt,想要在标签中打印数据值(双精度); 但是,尾随零被删除。 我知道在 CI 中可以使用 printf("%0.1f", data) 来保留尾随零。

我查看了 QString 的 arg 函数,但它只允许设置整体字段宽度。 setNumnumber 各自允许设置精度,但这也不正确。

示例代码:

double data = 1.0;
label->setText( QString().number( data );

I am using Qt and want to print a data value (double) in a label; however, the trailing zeros are lopped off. I know in C I can use printf("%0.1f", data) to preserve the trailing zeros.

I looked at QString's arg function but that only allows the overall field width to be set. setNum and number each allow the precision to be set but that's not right either.

Example code:

double data = 1.0;
label->setText( QString().number( data );

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

葵雨 2024-07-28 05:48:50

查看带有格式和精度参数的静态函数QString::number()

QString QString::number( double n, char format = 'g', int precision = 6 )

参考:http://doc.qtsoftware.com/4.5/qstring.html#number -2

Look at the static function QString::number() with format and precision arguments.

QString QString::number( double n, char format = 'g', int precision = 6 )

Reference: http://doc.qtsoftware.com/4.5/qstring.html#number-2

月隐月明月朦胧 2024-07-28 05:48:50

为什么不使用 QString::sprintf() ?

QString().sprintf("%08d + rest of the string", 7);

Why not use QString::sprintf() ?

QString().sprintf("%08d + rest of the string", 7);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文