Never save something for a special occasion. Every day in your life is a special occasion.
分类: WINDOWS
2011-10-20 23:49:03
如何用vc++获取系统时间和程序运行时间.doc
百度文库:
VC++获取系统当前时间.txt
百度文库:
例如:time_t time() 精确到s
time_t time( time_t * timer )
double difftime( time_t timer1, time_t timer0 )
例如:DWORD GetTickCount() 精确到ms
CString str;
long t1= GetTickCount();// 时间点1
//Sleep(500); // 运行程序
long t2= GetTickCount();// 时间点2
str.Format("time:%dms",t2-t1);//前后之差即程序运行时间
AfxMessageBox(str);