0

所有开发人员都可以告诉我如何使用 c++ Qt 创建倒计时吗?如果可以的话,你应该给我看一个源代码。

4

1 回答 1

0

你可以使用类似的东西。它每秒调用一次 timeOutSlot。

#define TIMEOUT 60

...
QTimer * timer = new QTimer();
connect(timer,SIGNAL(timeout()),this,SLOT(timeOutSlot()));
timer->start(1000); 
...

void timeOutSlot()
{
    static int time = TIMEOUT;
    time--; // decrement counter
    if (time==0) // countdown has finished
    {
        // timeout
    }
    else // re-start counter
    {
        time->start(1000);
    }
}
于 2012-04-04T17:05:55.340 回答