int GetTickCount( )
The GetTickCount() function retrieves the number of milliseconds that have elapsed since the system was started. It is limited to the resolution of the system timer.
GetTickCount() 関数は、システムが開始されてからの経過時間をミリ秒単位の数値で取得します。それは、システムタイマーの解像度に制限されています。
Sample:
サンプル:
1 2 3 | int start=GetTickCount(); // some hard calculations... Print("Calculation time is ", GetTickCount()-start, " milliseconds."); |