qt 获取系统当前时间
Posted 侠客不行怎么行
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了qt 获取系统当前时间相关的知识,希望对你有一定的参考价值。
1. 获取当前系统的时间日期
QDateTime current_date_time =QDateTime::currentDateTime();
QString current_date =current_date_time.toString("yyyy.MM.dd hh:mm:ss.zzz ddd");
2.
获取格林威治时间1970年01月01日00时00分00秒(北京时间1970年01月01日08时00分00秒)起至现在的总秒数
//秒级时间戳(十位)
QString timestamp = QString::number(QDateTime::currentMSecsSinceEpoch() / 1000);
//毫秒级时间戳(十三位)
QString timestamp = QString::number(QDateTime::currentMSecsSinceEpoch());
3.
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();//当前的毫秒
以上是关于qt 获取系统当前时间的主要内容,如果未能解决你的问题,请参考以下文章