对于简单的控制台程序,可使用clock(),表示程序开始执行到现在经过的时间,在要计算时间的代码前后添加如下代码即可(需要包含头文件<time.h>):
clock_t start, finish;
double totaltime;
start=clock();
//code
finish=clock();
totaltime=(double)(finish-start)/CLOCKS_PER_SEC; //得到结果单位秒,如果时间太短太短的话可能是0
std::cout<<totaltime<<"\n";
也可以调用win32API函数GetTickCount(),
DWORD dwStart = GetTickCount();
//代码.........
DWORD dwStop = GetTickCount();
DWORD dwInterval = dwStop - dwStart;