QDateTime 到 QString(Qt3 中以毫秒为单位)

发布于 2024-12-27 10:15:09 字数 92 浏览 1 评论 0原文

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 技术交流群。

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

发布评论

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

评论(2

空心↖ 2025-01-03 10:15:09

使用 toString 函数。 format 参数决定结果字符串的格式。

例如,以下代码将仅返回秒和毫秒。

QDateTime t = QDateTime::currentDateTime ();
QString s = t.toString("ss:zzz");

附言。您应该考虑将代码移植到 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.

QDateTime t = QDateTime::currentDateTime ();
QString s = t.toString("ss:zzz");

PS. You should consider porting your code to Qt4

岁月如刀 2025-01-03 10:15:09
QString DataList[100][100] ;
QDateTime AwbDateTime ;
AwbDateTime = QDateTime::fromString(DataList[i][9].left(19),Qt::ISODate) ; 

这在 Qt3 中可以正常工作

QString DataList[100][100] ;
QDateTime AwbDateTime ;
AwbDateTime = QDateTime::fromString(DataList[i][9].left(19),Qt::ISODate) ; 

This will work fine in Qt3

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