Qt學習筆記 QTime時間類

2021-08-28 06:39:50 字數 787 閱讀 3314

qtime

常用函式

qtime currenttime();<-- 返回系統時間, 但資料型別為qtime型別,要使用的話需使用tostring(const qstring &format);

qstring qtime::tostring(

const qstring &format

) const<--format為要將時間格式化的格式,格式詳情參照幫助文件, 以下是常用型別

hh:mm:ss.zzz                    顯示格式為:14:13:09.042

h:m:s ap                            顯示格式為:2:13:9 pm

h:m:s a                              顯示格式為:14:13:9 pm

hh::mm::s                          顯示格式為:14:13:9

例:

qstring widget::getsystemtime()

Qt學習筆記 4 QTimer和QTime

qtimer是乙個計時器類 它的使用分三步,建立物件,連線signal和slot函式,start qtimer timer new qtimer this connect timer,signal timeout this,slot update timer start 1000 其中,signal...

Qt 串列埠類QSerialPort 學習筆記

一 串列埠類簡介 當前的qtserialport 模組中提供了兩個 c 類,分別是 qserialport 和qserialportinfo。qserialport 類提供了操作串列埠的各種介面。qserialportinfo 是乙個輔助類,可以提供計算機中可用串列埠的各種資訊。先介紹 qseria...

QT學習筆記自製pushbutton類

常用快捷鍵 注釋 ctrl ctrl r 執行 ctrl b 編譯 ctrl 滾輪 縮放 ctrl f查詢 ctrl shift 上建 整行移動 f1 幫助文件 ctrl i 自動對齊 同名之間的h和cpp檔案切換 f4 3.在專案中新增乙個類檔案 ifndef mypushbotton h def...