写一个时间函数,定义一个QTimer对象,这个timer的interval设置为1000,时间一到就输出:
QTimer timer;
timer.setInterval(1000);
timer.start();
connect(&timer,SIGNAL(timeOut()),this,SLOT(myTimerout()));
void thisObject::myTimerOut()
{
ui->textBrowser->append(QString("hello ===>> %1").arg(i));
}
(这个timer必须是你的类成员对象,或者指针对象,不能是局部的哈)