标签:
#include <time.h>
clock_t start,ends;start=clock();
Sleep(50);
ends=clock();
cout<<ends-start<<endl;
time_t 获得时间只能精确到秒,clock_t 获得时间能够精确到毫秒
c++ 中 毫秒级时间获取
原文地址:http://www.cnblogs.com/qingyuanjushi/p/5902681.html