clock
計算所呼叫的處理程序使用的牆時鐘時間。
clock_t clock( void );
傳回值
自處理序啟動後的 24 小時制的牆時鐘時間 (以秒為單位的時間經過的時間CLOCKS_PER_SEC)。 如果無法使用的已耗用時間,則函數會傳回 – 1,轉換成clock_t。
備註
clock 函式會告訴呼叫的程序已經使用了多少時間。 計時器刻度為大約等於 1 /CLOCKS_PER_SEC 第二個。
需求
常式 |
所需的標頭 |
---|---|
clock |
<time.h> |
其他的相容性資訊,請參閱相容性在簡介中。
範例
// crt_clock.c
// This example prompts for how long
// the program is to run and then continuously
// displays the elapsed time for that period.
//
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void sleep( clock_t wait );
int main( void )
{
long i = 6000000L;
clock_t start, finish;
double duration;
// Delay for a specified time.
printf( "Delay for three seconds\n" );
sleep( (clock_t)3 * CLOCKS_PER_SEC );
printf( "Done!\n" );
// Measure the duration of an event.
printf( "Time to do %ld empty loops is ", i );
start = clock();
while( i-- )
;
finish = clock();
duration = (double)(finish - start) / CLOCKS_PER_SEC;
printf( "%2.1f seconds\n", duration );
}
// Pauses for a specified number of milliseconds.
void sleep( clock_t wait )
{
clock_t goal;
goal = wait + clock();
while( goal > clock() )
;
}
.NET Framework 對等用法
不適用。 若要呼叫標準的 c 函式,使用PInvoke。 如需詳細資訊,請參閱平台叫用範例。