QDateTime 到 QString(Qt3 中以毫秒为单位)
Qt3中有没有办法将 QDateTime 转换为 QString 并返回 QDateTime,以便最终 QDateTime 将包含有关毫秒的信息?
谢谢。
Is there a way in Qt3 to convert QDateTime into a QString and back to QDateTime, so that eventually QDateTime will contain information about milliseconds?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
toString
函数。 format 参数决定结果字符串的格式。例如,以下代码将仅返回秒和毫秒。
附言。您应该考虑将代码移植到
Qt4
Use the
toString
function. The format parameter determines the format of the result string.For example the following code will return only the seconds and the miliseconds.
PS. You should consider porting your code to
Qt4
这在 Qt3 中可以正常工作
This will work fine in Qt3