VC统计程序运行时间

1.统计程序运行时间:
          #include "time.h"
      clock_t start, finish;
      double  duration;
      start = clock();      //开始记时间
                      //在start 和finish之间加要统计的函数或者过程duration返回运行的时间单位(s)
finish = clock();              //终止记时
duration = (double)(finish - start) / CLOCKS_PER_SEC;
        CString str;
str.Format("%lf",duration);
AfxMessageBox(str);

你可能感兴趣的:(VC统计程序运行时间)