VC下测试一段代码运行时间

 毫秒级的计时。  
  注意连接的时候加上Winmm.lib。  
   
  DWORD   t1   =   timeGetTime();  
  /*  
  你的代码  
  */  
   
  DWORD   t2   =   timeGetTime();  
  double   spend=(double)(t2-t1);  
  CString   msg;  
  msg.Format("运行完成,一共花费时间 为:%d毫秒",(int)spend);  
  AfxMessageBox(msg);

你可能感兴趣的:(测试)