码迷,mamicode.com
首页 > 编程语言 > 详细

c++ 中 毫秒级时间获取

时间:2016-09-24 11:47:43      阅读:306      评论:0      收藏:0      [点我收藏+]

标签:

#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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!