C 库函数 - clock()

描述

C 库函数 clock_t clock(void) 返回程序执行起(一般为程序的开头),处理器时钟所使用的时间。为了获取 CPU 所使用的秒数,您需要除以 CLOCKS_PER_SEC。

在 32 位系统中,CLOCKS_PER_SEC 等于 1000000,该函数大约每 72 分钟会返回相同的值。

声明

下面是 clock() 函数的声明。

  1. clock_t clock(void)

参数

  • NA

返回值

该函数返回自程序启动起,处理器时钟所使用的时间。如果失败,则返回 -1 值。

实例

下面的实例演示了 clock() 函数的用法。

实例

  1. #include <time.h>
  2. #include <stdio.h>
  3. int main()
  4. {
  5. clock_t start_t, end_t;
  6. double total_t;
  7. int i;
  8. start_t = clock();
  9. printf("程序启动,start_t = %ld\n", start_t);
  10. printf("开始一个大循环,start_t = %ld\n", start_t);
  11. for(i=0; i< 10000000; i++)
  12. {
  13. }
  14. end_t = clock();
  15. printf("大循环结束,end_t = %ld\n", end_t);
  16. total_t = (double)(end_t - start_t) / CLOCKS_PER_SEC;
  17. printf("CPU 占用的总时间:%f\n", total_t );
  18. printf("程序退出...\n");
  19. return(0);
  20. }

让我们编译并运行上面的程序,这将产生以下结果:

  1. 程序启动,start_t = 2614
  2. 开始一个大循环,start_t = 2614
  3. 大循环结束,end_t = 28021
  4. CPU 占用的总时间:0.025407
  5. 程序退出...