[static] void QTimer::singleShot(int msec, const QObject *receiver, const char *member)
这个静态函数在一个给定时间间隔 msec(毫秒) 之后调用一个槽。
用法1 :
假设类A有个槽函数 function() { }
我们要在10s之后执行它
就可以:
QTimer::singleShot(10*1000,this, &A::function());
用法2:
实现循环
槽函数中还是singleShot 即:
1 function(){ 2 QTimer::singleShot(10*1000,this, &A::function()); 3 }
但是为了让循环可控,应该加个条件
1 bool condition = true; 2 function(){ 3 if(condition){ 4 QTimer::singleShot(10*1000,this, &A::function()); 5 } 6 }
标签:function,10,Qt,用法,singleShot,QTimer,1000 From: https://www.cnblogs.com/ybqjymy/p/17390394.html