qbasictimer是在qt內部使用的快速、輕量級、低層次的類(不建議在應用程式中使用該類,建議使用更高層次的qtimer類)。
qbasictimerstop()函式停止該定時器。
class
q_core_export qbasictimer
inline
~qbasictimer()
inline
bool
isactive()
const
inline
inttimerid()
const
void
start
(int msec, qobject *obj)
;void
start
(int msec, qt::timertype timertype, qobject *obj)
;void
stop();};
uml類圖
成員介紹
成員備註
qbasictimer::qbasictimer()
類建構函式
qbasictimer::~qbasictimer()
類析構函式
bool qbasictimer::isactive() const
true:定時器處於工作狀態
false:定時器不處於工作狀態
void qbasictimer::start(int msec, qobject *object)
啟動定時器
msec:定時時間(單位:毫秒)
*object:接收定時器事件的物件
void qbasictimer::start(int msec, qt::timertype timertype, qobject *obj)
啟動定時器
msec:定時時間(單位:毫秒)
timertype:
0:qt::precisetimer
1:qt::coarsetimer
2:qt::verycoarsetimer
*object:接收定時器事件的物件
void qbasictimer::stop()
停止定時器
int qbasictimer::timerid() const
獲取定時器id名稱值
備註qt::precisetimer
0精確計時精度(毫秒級)
qt::coarsetimer
1粗略計時精度(誤差在5%以內)
qt::verycoarsetimer
2非常粗略計時精度
#ifndef new_class_h
#define new_class_h
#include
#include
#include
class
newclass
:public qobject
;#endif
#include
"newclass.h"
newclass::
newclass()
newclass::
~newclass()
//! 定時器處理函式
void newclass::
timerevent
(qtimerevent *event)
學習筆記 雜湊學習筆記
hash基本原理 hash就是乙個像函式一樣的東西,你放進去乙個值,它給你輸出來乙個值。輸出的值就是hash值。一般hash值會比原來的值更好儲存 更小 或比較。那字串hash就非常好理解了。就是把字串轉換成乙個整數的函式。而且要盡量做到使字串對應唯一的hash值。它的主要思路是選取恰當的進製,可以...
學習筆記 CentOS 學習筆記01
簡單的做個課堂筆記 虛擬機器用的是vmware,系統是centos cd etc sysconfig network scripts pwdls 顯示列表 cat ifcfg eth0 檢視檔案內容 vi ifcfg eth0 進入vi編輯器 onboot no 原始設定 x逐字刪除 d刪除整行 a...
筆記 spring cloud 學習筆記
1 spring cloud 是什麼 spring cloud為開發人員提供了快速構建分布式系統中一些常見模式的工具 例如配置管理,服務發現,斷路器,智慧型路由,微 控制匯流排 分布式系統的協調導致了樣板模式,使用spring cloud開發人員可以快速地支援實現這些模式的服務和應用程式。他們將在任...