Qt获取当前时间并格式化输出及将积秒转换成时间

1 格式化输出当前时刻

qDebug()<<"currentTime--"<

输出为:

currentTime--
 "16:03:27"
 "2016-02-24T16:03:27"
 "2016-02-24 16:03:27:607"

2  获得1970-01-01至今的秒数并将这个描述转成日期

int i=QDateTime::currentDateTime().toTime_t();
    qDebug()<<"i--"<
输出为:
i-- 1458134574
"2016-03-16 21:22:54.000"
3 获得当前的时间转成字符串形式,并且将这个时间的字符串转成当时日期

QString s=QDateTime::currentDateTime().toString("yyyy-MM-dd hh:mm:ss.zzz");
    QDateTime dateTime=QDateTime::fromString(s,"yyyy-MM-dd hh:mm:ss.zzz");
    qDebug()<<"time--"<
输出为:

time-- "2016-03-16 21:26:00.635"
"2016-03-16 21:26:00.635"

3 QDateTime加一定秒数

Qt获取当前时间并格式化输出及将积秒转换成时间_第1张图片

QDateTime提供了这些函数来提供向数据中增加年月日时分秒的操作。

    QDateTime dateTime=QDateTime::currentDateTime();
    QDateTime dateTime2=dateTime.addSecs(7000000000);
    qDebug()<

输出为:

Starting F:\exercise\build-untitled20-desktop4_8_5-Debug\debug\untitled20.exe...
"2016-03-21T22:12:44" "1965-11-02T21:42:52" 








你可能感兴趣的:(Qt)