天天看點

c++ 運作時間Windows.h 庫

Windows.h 庫

  1. GetTickCount() 傳回值類型:DWORD 紀錄了作業系統從啟動所經過的毫秒數

    ‘’’

    DWORD start_time = GetTickCount();

    {要計時的程式 }

    DWORD run_time = GetTickCount() - start_time;

‘’’

c++

繼續閱讀