DWORD struct _timeb

问题引出:API函数GetTickCount()返回的是一个DWORD,返回的值表示应用程序的运行时间,那么应用运行多久呢?即这个数值的范围是多少呢?

 

问题答案:(20080808)

1.DWORD的表示范围:0-4294967295;即2的32次方减1即可;

2.GetTickCount()仅能表示大约49.7天内的系统运行时间,在MSDN6.0中是这样说的:

  The elapsed time is stored as a DWORD value. Therefore, the time will wrap around to zero if the system is run continuously for 49.7 days.

 

问题的延伸:

现在的应用程序要考虑两个事件的触发间隔,那么用GetTickCount()显然是不行的,考虑取一个系统的时间且精确到毫秒,这个结构就是:struct _timeb timebuffer;获取当前时间可以用函数:_ftime( &timebuffer ); 两个事件的间隔时间为: time_t tLapse = timebuffer.time - m_LastTime.time;

你可能感兴趣的:(技术)