Qt每天一例4.获取当前系统时间系统时间戳
Posted 鱼酱2333
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Qt每天一例4.获取当前系统时间系统时间戳相关的知识,希望对你有一定的参考价值。
需求:获取当前系统时间、系统时间戳
使用QDateTime类
#include <QCoreApplication>
#include <QDateTime>
int main(int argc, char *argv[])
QCoreApplication a(argc, argv);
//获取当前时间
qDebug()<<QDateTime::currentDateTime().toString("yyyy/MM/dd hh:mm:ss.zzz");
//获取秒时间戳
qDebug()<<QDateTime::currentSecsSinceEpoch();
//获取毫秒时间戳
qDebug()<<QDateTime::currentMSecsSinceEpoch();
return a.exec();
以上是关于Qt每天一例4.获取当前系统时间系统时间戳的主要内容,如果未能解决你的问题,请参考以下文章