qtc++获取当前时间
时间: 2023-07-05 16:36:24 浏览: 124
获取当前时间
您可以使用Qt的QDateTime类来获取当前的系统时间。以下是一个示例代码,演示如何使用QDateTime获取当前时间:
```
#include <QDateTime>
// 获取当前日期和时间
QDateTime currentDateTime = QDateTime::currentDateTime();
// 获取当前日期
QDate currentDate = currentDateTime.date();
// 获取当前时间
QTime currentTime = currentDateTime.time();
// 打印当前日期和时间
qDebug() << "Current Date and Time: " << currentDateTime.toString(Qt::ISODate);
```
在上面的代码中,我们首先使用QDateTime::currentDateTime()获取当前日期和时间。然后,我们可以使用QDateTime的date()和time()函数来获取当前日期和时间。最后,我们可以使用toString()函数将日期和时间转换为字符串,并使用qDebug()函数打印输出。
阅读全文