一:sleep,msleep,usleep
是QThread 下的三个静态函数
[static] void QThread::sleep(unsigned long secs) //秒
[static] void QThread::msleep(unsigned long msecs) //毫秒
[static] void QThread::usleep(unsigned long usecs) //微秒
使用方法:
QThread::sleep(1);//休眠一秒
注意:不可在主线程中使用
二:利用QElapsedTimer 来实现
QElapsedTimer类是提供了一种快速计算运行时间的方法
使用方法:
QElapasedTimer m_elapasedTimer;
m_elapasedTimer.start();
while(m_elapasedTimer.elapsed()<1000)
{
QCoreApplication::processEvents();
}
解释:
qint64 QElapsedTimer::elapsed() const // 返回此QElapsedTimer最后一次启动后的毫秒数。
[static] void QCoreApplication::processEvents(QEventLoop::ProcessEventsFlags flags = QEventLoop::AllEvents)
//防止在主线程中,等待事件过长,导致页面假死状态;如果在子线程中使用,可不加此函数
三 QElapsedTimer中的其他函数
1 bool QElapsedTimer::hasExpired(qint64 timeout) const //判断该QElapsedTimer是否已经超时,超过返回false,没超过返回true;timeout可为-1,表示这个计时器没有过期,在这种情况下,这个函数返回false
2 void QElapsedTimer::invalidate() //将此QElapsedTimer标记为无效。
3 bool QElapsedTimer::isValid() const //QElapsedTimer无效返回false。
4 qint64 QElapsedTimer::msecsTo(const QElapsedTimer &other) const //返回此QElapsedTimer与其他计时器之间的毫秒数。如果other在此对象之前启动,则返回的值将为负。如果它是在稍后启动的,则返回的值将为正。
5 qint64 QElapsedTimer::restart() //重新启动计时器并返回自上次启动以来经过的时间。这个函数相当于使用elapsed()获得经过的时间,然后使用start()再次启动计时器,但是它是在一次操作中完成的,避免了两次获取时钟值的需要。在无效的QElapsedTimer上调用此函数会导致未定义的行为;
6 void QElapsedTimer::start() //开启定时器
来源:CSDN
作者:lyj548926543
链接:https://blog.csdn.net/lyj548926543/article/details/103587313