测量经过的时间

时间:2013-04-15 17:43:23

标签: c time.h

我添加了以下代码来测量,以了解程序持续了多少毫秒。 问题是我得到1065个时钟和1065毫秒。他们是平等的,这是正常的吗? 也许我的方程式错误将时钟转换为毫秒?提前致谢

finishClock = clock();
timeCount = finishClock - startClock ;
printf("Clocks passed: %f\n Milli Seconds passed: %f",timeCount, timeCount*1000/CLOCKS_PER_SEC);

1 个答案:

答案 0 :(得分:1)

基于Tcl References here,它们是同义词:

  

如果-option参数是-milliseconds,那么命令是   与时钟毫秒同义(见下文)。这种用法是   过时的,时钟毫秒被认为是首选的方式   获得毫秒数。