码迷,mamicode.com
首页 > 其他好文 > 详细

Qt获取当前时间

时间:2019-07-10 18:47:56      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:time()   time   lis   day   精度   wmi   col   使用   ring   

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获取当前时间

标签:time()   time   lis   day   精度   wmi   col   使用   ring   

原文地址:https://www.cnblogs.com/LuckCoder/p/11165510.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!