QT 定时器

QTimer::singleShot(2000,this,SLOT(single()));   单次

 

 

  1.  timer = new QTimer();  
  2.     this->connect(timer,SIGNAL(timeout()),this,SLOT(timerDone()));  
  3.   
  4.     timer->start( 1000 );  //一秒钟后开始触发,然后一秒一次   
  5.   
  6.     timer->singleShot(2000,this,SLOT(slotTime()));      //2秒钟触发一次   

你可能感兴趣的:(QT 定时器)