时间函数

1、毫秒

#include “stdio.h” 
#include “stdlib.h” 
#include “time.h” 
int main( void ) 

long i = 10000000L; 
clock_t start, finish; 
double duration; 
/* 测量一个事件持续的时间*/ 
printf( "Time to do %ld empty loops is ", i ); 
start = clock(); 
while( i-- ) 
finish = clock(); 
duration = (double)(finish - start) / CLOCKS_PER_SEC; 
printf( "%f seconds/n", duration ); 
system("pause"); 


在笔者的机器上,运行结果如下: 
Time to do 10000000 empty loops is 0.03000 seconds 
上面我们看到时钟计时单元的长度为1毫秒,那么计时的精度也为1毫秒,那么我们可不可以通过改变CLOCKS_PER_SEC的定义,通过把它定义的大一些,从而使计时精度更高呢?通过尝试,你会发现这样是不行的。在标准C/C++中,最小的计时单位是一毫秒。

你可能感兴趣的:(c++)