Qt使用QTimer实现函数的周期性执行

要求:已经定义了一个函数,要求他每隔1秒,自动执行一次。

实现方法:将需要执行的函数定义为槽函数。使用QTimer计时。定时1000ms,将timeout信号连接到需要执行的槽函数上。

1.使用QTimer的要求:

Header: #include  
qmake: QT += core
2.将需要执行的函数定义为槽函数:
public slots:
    void slotCountMessage();//这是头文件中的槽函数声明,还需要自己在cpp文件中对改槽函数进行具体的定义。
3.程序中调用QTimer实现1秒执行一次:
void MainWindow::InitCountMessage()
{
    QTimer *timer = new QTimer(this); 
    connect(timer, SIGNAL(timeout()), this, SLOT(slotCountMessage()); // slotCountMessage是我们需要执行的响应函数 
    timer->start(1000); // 每隔1s 
}

你可能感兴趣的:(QT)