Windows API一日一练(69)GetTickCount函数

<iframe align="center" marginwidth="0" marginheight="0" src="http://www.zealware.com/csdnblog336280.html" frameborder="0" width="336" scrolling="no" height="280"></iframe>
时间计时,也不是越精确越好,有时只需要有一个计时就行了。这样就可以使用毫秒级别的计时函数 GetTickCount 。这个函数是记录了系统启动以来的时间毫秒,当超过 49.7 天,这个值变为从 0 开始,也就是说 49.7 天是一个周期。当不同的两次函数调时,就返回两次时间差值。
函数 GetTickCount 声明如下:
WINBASEAPI
DWORD
WINAPI
GetTickCount(
VOID
);
调用函数的例子如下:
#001// 一般的时钟计时。
#002// 蔡军生 2007/11/09 QQ:9073204 深圳
#003void TestTickCount(void)
#004{
#005 // 获取第一次计时值。
#006 DWORD dwStart = ::GetTickCount();
#007 for (int i = 0; i
#008 {
#009 // 计算时间间隔。
#010 DWORD dwInterval = ::GetTickCount() - dwStart;
#011
#012 Sleep(100);
#013
#014 // 显示时间的间隔。
#015 const int nBufSize = 256;
#016 TCHAR chBuf[nBufSize];
#017 wsprintf(chBuf,_T("dwInterval=%d\r\n"),dwInterval);
#018 OutputDebugString(chBuf);
#019 }
#020
#021}



你可能感兴趣的:(html,windows,qq)