Qt获取当前时间

Posted luckcoder

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Qt获取当前时间相关的知识,希望对你有一定的参考价值。

1 使用QDateTime类(毫秒精度)

QDateTime current_date_time = QDateTime::currentDateTime();
QString current_date = current_date_time.toString("yyyy-MM-dd hh:mm::ss.zzz");

2 使用QTime类

QTime current_time = QTime::currentTime();
int hour = current_time.hour();        //当前的小时
int minute = current_time.minute();    //当前的分
int second = current_time.second();    //当前的秒
int msec = current_time.msec();        //当前的毫秒

 3 使用GetLocalTime函数(毫秒精度)

SYSTEMTIME sys;
GetLocalTime(&sys);
printf("%4d/%2d/%2d %2d:%2d:%2d.%3d\n",sys.wYear, sys.wMonth, sys.wDay, sys.wHour, sys.wMinute, sys.wSecond, sys.wMilliseconds);

 

以上是关于Qt获取当前时间的主要内容,如果未能解决你的问题,请参考以下文章

Qt获取当前时间

Qt获取当前播放媒体的文件路径?

使用 C++\Qt 从当前窗口中获取选定的文本

如何获取 Qt 应用程序的当前工作目录路径?

使用 Qt 获取当前的 macOS shell

Qt:获取当前应用程序调色板