clock_t用法

Posted 走过_冬天

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了clock_t用法相关的知识,希望对你有一定的参考价值。

clock_t定义

#ifndef _CLOCK_T_DEFINED
typedef long clock_t;
#define _CLOCK_T_DEFINED
#endif

clock_t是一个长整形数。在time.h文件中,还定义了一个常量CLOCKS_PER_SEC,它用来表示一秒钟会有多少个时钟计时单元,其定义如下:

#define CLOCKS_PER_SEC ((clock_t)1000)

clock()返回单位是毫秒。如果想返用秒为单位可以用

duration = (finish - start) / CLOCKS_PER_SEC;
#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int main(void)

    long i = 10000000L;
    double duration;
    clock_t start, finish;

    start = clock();
    while( i-- );
    finish = clock();

    duration = (double)(finish - start) / CLOCKS_PER_SEC;
    printf( "%f seconds\\n", duration );
    system("pause");

以上是关于clock_t用法的主要内容,如果未能解决你的问题,请参考以下文章

如何求程序运行时间

日期和时间

C++时间和日期

linux c性能测试的时间间隔获取方法

如何测试有符号或无符号整数的最高有效位?

卡时技巧