Windows API一日一練(69)GetTickCount函數

來源:互聯網
上載者:User
  Windows API一日一練(69)GetTickCount函數

時間計時,也不是越精確越好,有時只需要有一個計時就行了。這樣就可以使用毫秒層級的計時函數GetTickCount。這個函數是記錄了系統啟動以來的時間毫秒,當超過49.7天,這個值變為從0開始,也就是說49.7天是一個周期。當不同的兩次函數調時,就返回兩次時間差值。

函數GetTickCount聲明如下:

WINBASEAPI
DWORD
WINAPI
GetTickCount(
    VOID
    );

調用函數的例子如下:
#001 //一般的時鐘計時。
#002  //蔡軍生 2007/11/09 QQ:9073204 深圳
#003  void TestTickCount(void)
#004  {
#005        //擷取第一次計時值。
#006        DWORD dwStart = ::GetTickCount();
#007        for (int i = 0; i < 10; i++)
#008        {
#009              //計算時間間隔。
#010              DWORD dwInterval = ::GetTickCount() - dwStart;
#011             
#012              Sleep(100);
#013
#014              //顯示時間的間隔。
#015              const int nBufSize = 256;
#016              TCHAR chBuf[nBufSize];
#017              wsprintf(chBuf,_T("dwInterval=%d/r/n"),dwInterval);
#018              OutputDebugString(chBuf);
#019        }
#020
#021  }

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.