QT-Qt获取当前时间并格式化输出及将积秒转换成时间
https://blog.csdn.net/u012199908/article/details/50731543
?
?
格式化輸出當前時刻
qDebug()<<"currentTime--"<<QTime::currentTime().toString(Qt::ISODate)
<<QDateTime::currentDateTime().toString(Qt::ISODate)
<<QDateTime::currentDateTime().toString("yyyy-MM-dd hh:mm:ss:zzz");
輸出為:
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;
qDebug()<<QDateTime::fromTime_t(i).toString("yyyy-MM-dd hh:mm:ss.zzz");
輸出為:
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--"<<s;
qDebug()<<dateTime.toString("yyyy-MM-dd hh:mm:ss.zzz");
輸出為:
time-- "2016-03-16 21:26:00.635"
"2016-03-16 21:26:00.635"
3 QDateTime加一定秒數
?
QDateTime提供了這些函數來提供向數據中增加年月日時分秒的操作。
QDateTime dateTime=QDateTime::currentDateTime();
QDateTime dateTime2=dateTime.addSecs(7000000000);
qDebug()<<dateTime.toString(Qt::ISODate)
<<dateTime2.toString(Qt::ISODate);
輸出為:
Starting F:\exercise\build-untitled20-desktop4_8_5-Debug\debug\untitled20.exe...
"2016-03-21T22:12:44" "1965-11-02T21:42:52"
---------------------
作者:yingge2017
來源:CSDN
原文:https://blog.csdn.net/u012199908/article/details/50731543
版權聲明:本文為博主原創文章,轉載請附上博文鏈接!
轉載于:https://www.cnblogs.com/FKdelphi/p/10443865.html
總結
以上是生活随笔為你收集整理的QT-Qt获取当前时间并格式化输出及将积秒转换成时间的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: URL与URI的不同
- 下一篇: Oracle创建pfile spfile