VC/MFC中计算程序运行时间

 

方法一 利用GetTickCount函数(ms)

[cpp] view plain copy print ?
  1. CString str;           
  2.    
  3. long t1=GetTickCount();//程序段开始前取得系统运行时间(ms)               
  4.   
  5. 。。。。。。//to do sth   
  6.   
  7. long t2=GetTickCount();//程序段结束后取得系统运行时间(ms)           
  8.   
  9. str.Format("time:%dms",t2-t1);//前后之差即程序运行时间           
  10.   
  11. AfxMessageBox(str);   

方法二利用C/C++计时函数(s)


[cpp] view plain copy print ?
  1. #include "time.h"   
  2.   
  3. clock_t   start,   finish;  
  4.   
  5. start = clock();   
  6.   
  7. 。。。。。。//to do sth   
  8.   
  9. finish = clock();  
  10.   
  11. printf("%f seconds\n",(double)(finish-start)/CLOCKS_PER_SEC);   

 


方法三 利用CTime类 获取系统时间

[cpp] view plain copy print ?
  1. CString str;  
  2.   
  3. //获取系统时间   
  4.   
  5. CTime tm;  
  6.   
  7. tm=CTime::GetCurrentTime();  
  8.   
  9. str=tm.Format("现在时间是%Y年%m月%d日  %X");  
  10.   
  11. AfxMessageBox(str);  


方法四  利用GetLocalTime类获取系统时间

[cpp] view plain copy print ?
  1. SYSTEMTIME st;  
  2.   
  3. CString strDate,strTime;  
  4.   
  5. GetLocalTime(&st);  
  6.   
  7. strDate.Format("M----",st.wYear,st.wMonth,st.wDay);  
  8.   
  9. strTime.Format("-:-:-",st.wHour,st.wMinute,st.wSecond);  
  10.   
  11. AfxMessageBox(strDate);  
  12.   
  13. AfxMessageBox(strTime);  

你可能感兴趣的:(VC/MFC中计算程序运行时间)