打印 QString 中的尾随零
我正在使用 Qt,想要在标签中打印数据值(双精度); 但是,尾随零被删除。 我知道在 CI 中可以使用 printf("%0.1f", data) 来保留尾随零。
我查看了 QString 的 arg 函数,但它只允许设置整体字段宽度。 setNum 和 number 各自允许设置精度,但这也不正确。
示例代码:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看带有格式和精度参数的静态函数
QString::number()
。参考:http://doc.qtsoftware.com/4.5/qstring.html#number -2
Look at the static function
QString::number()
with format and precision arguments.Reference: http://doc.qtsoftware.com/4.5/qstring.html#number-2
为什么不使用 QString::sprintf() ?
Why not use QString::sprintf() ?