C 庫函數(shù) - clock()

C 標(biāo)準(zhǔn)庫 - <time.h> C 標(biāo)準(zhǔn)庫 - <time.h>

描述

C 庫函數(shù) clock_t clock(void) 返回程序執(zhí)行起(一般為程序的開頭),處理器時鐘所使用的時間。為了獲取 CPU 所使用的秒數(shù),您需要除以 CLOCKS_PER_SEC。

在 32 位系統(tǒng)中,CLOCKS_PER_SEC 等于 1000000,該函數(shù)大約每 72 分鐘會返回相同的值。

聲明

下面是 clock() 函數(shù)的聲明。

clock_t clock(void)

參數(shù)

  • NA

返回值

該函數(shù)返回自程序啟動起,處理器時鐘所使用的時間。如果失敗,則返回 -1 值。

實例

下面的實例演示了 clock() 函數(shù)的用法。

#include <time.h>
#include <stdio.h>

int main()
{
   clock_t start_t, end_t, total_t;
   int i;

   start_t = clock();
   printf("程序啟動,start_t = %ld\n", start_t);
    
   printf("開始一個大循環(huán),start_t = %ld\n", start_t);
   for(i=0; i< 10000000; i++)
   {
   }
   end_t = clock();
   printf("大循環(huán)結(jié)束,end_t = %ld\n", end_t);
   
   total_t = (double)(end_t - start_t) / CLOCKS_PER_SEC;
   printf("CPU 占用的總時間:%f\n", total_t  );
   printf("程序退出...\n");

   return(0);
}

讓我們編譯并運行上面的程序,這將產(chǎn)生以下結(jié)果:

程序啟動,start_t = 0
開始一個大循環(huán),start_t = 0
大循環(huán)結(jié)束,end_t = 20000
CPU 占用的總時間:0.000000
程序退出...

C 標(biāo)準(zhǔn)庫 - <time.h> C 標(biāo)準(zhǔn)庫 - <time.h>