QDateTime currentDateTime = QDateTime::currentDateTime();
时间: 2024-10-04 19:00:45 浏览: 42
Qt例程源代码QDateTime.7z
5星 · 资源好评率100%
`QDateTime currentDateTime = QDateTime::currentDateTime();` 是用于Qt库中的一个语句,它会获取系统当前的日期和时间。这个操作符返回一个`QDateTime`对象,包含了当前日期、时间和时区信息。
举个例子:
```cpp
// 获取当前日期和时间
QDateTime currentTime = QDateTime::currentDateTime();
// 打印当前时间(默认格式)
qDebug() << "Current date and time: " << currentTime.toString();
// 如果你想以特定格式打印,可以这样做
QString formattedTime = currentTime.toString("yyyy-MM-dd HH:mm:ss");
qDebug() << "Formatted time: " << formattedTime;
```
在这个例子中,`toString()` 方法用于将`QDateTime`对象转换为字符串,按照指定的格式(如"yyyy-MM-dd HH:mm:ss")显示。
阅读全文