码迷,mamicode.com
首页 > 其他好文 > 详细

VC 测试一段程序的运行时间 精确到ms

时间:2016-03-09 15:33:21      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

分三个步骤

1:声明变量

LARGE_INTEGER litmp;
_int64 QPart1,QPart2;
double dfMinus,dfFreq, dfTim;
QueryPerformanceFrequency(&litmp);

2 在判断时间的开始位置 开始计时

dfFreq=(double) litmp.QuadPart;
QueryPerformanceCounter(&litmp);
QPart1=litmp.QuadPart;

3 在判断结束位置 读取运行时间

QueryPerformanceCounter(&litmp);
QPart2=litmp.QuadPart;
dfMinus=(double)(QPart2-QPart1);
dfTim = dfMinus/dfFreq*1000;
//显示时间
CString msg4="时间:",msg3,msg5="毫秒";
msg3.Format("%10.9f",dfTim);
CString st = msg4+msg3+msg5;

 

st就是最终输出的 运行时间

VC 测试一段程序的运行时间 精确到ms

标签:

原文地址:http://www.cnblogs.com/LJWJL/p/5257897.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!