qt 获取当前时间时分秒
时间: 2024-09-29 10:15:17 浏览: 40
在Qt框架中,你可以使用QDateTime类来获取当前的时间,包括年、月、日、小时、分钟和秒。以下是一个简单的示例:
```cpp
#include <QDateTime>
#include <QDebug>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QDateTime currentTime = QDateTime::currentDateTime();
qDebug() << "当前时间是:" << currentTime.toString("yyyy-MM-dd HH:mm:ss"); // 格式化显示
return app.exec();
}
```
在这个例子中,`QDateTime::currentDateTime()`函数返回一个包含当前日期和时间的对象,然后通过`toString()`方法将其转换成字符串并按照"yyyy-MM-dd HH:mm:ss"的格式打印出来。
如果你想要在其他地方使用这个时间,比如作为变量存储,可以直接赋值给一个QDateTime类型的变量,如`QDateTime currentDateTime = QDateTime::currentDateTime();`。
阅读全文