QT里定时器QTimer的用法

http://blog.sina.com.cn/s/blog_6050059b0100djrd.html



QTimer Class Reference
[QtCore module]

用这三条语就可以实现定时器每time秒触发一次,直到用timer->stop()槽时才停止触发,要两个值得注意的槽函数而不是信号函数,timer->start(int time),每隔time秒重起一次定时器,timer->stop()取消定时,下面的代码可以循环触发,但若加一句代码timer->setSingleShot(true)将会只启动定时器一次!

QTimer *timer = new QTimer(this);

注销掉此行就可以连续定时timer->setSingleShot(true)
       connect(timer, SIGNAL(timeout()), this, SLOT(processOneThing()));
     timer->start(time*1000);





你可能感兴趣的:(QT里定时器QTimer的用法)