QT中程序运行耗时的计算方法

版本:QT5.12.10

方法1:QElapsedTimer

接口:

void QElapsedTimer::start()
qint64 QElapsedTimer::elapsed() const

使用示例:

QElapsedTimer ElapsedTimer;
ElapsedTimer.start();
/*耗时操作......*/
qDebug()<<"耗时"<<ElapsedTimer.elapsed()<<"毫秒";

方法2:QTime,与QElapsedTimer用法类似

接口:

void QTime::start()
int QTime::elapsed() const

使用示例:

QTime Timer;
Timer.start();
/*耗时操作......*/
qDebug()<<"耗时"<<Timer.elapsed()<<"毫秒";

对比

QTime类提供一般的时钟功能,为程序提供时间参考。
根据官方文档中QElapsedTimer的描述:
The QElapsedTimer class provides a fast way to calculate elapsed times.
因此使用方法1计算耗时会比方法2更高效。
以上均为博主本人的拙略见解,若表达有误欢迎留言指正。

你可能感兴趣的:(QT,c++,编程语言,qt5)