c++ 中 毫秒级时间获取

#include <time.h>

 

clock_t start,ends;
start=clock();

Sleep(50);

ends=clock();

cout<<ends-start<<endl;

 

 

time_t 获得时间只能精确到,clock_t 获得时间能够精确到毫秒

posted @ 2016-09-24 10:49  清源居士  阅读(36445)  评论(0)    收藏  举报