程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> c++實現精確計時

c++實現精確計時

編輯:C++入門知識

c++實現精確計時


//獲取比較准確是程序運行時間


#include
#include
using namespace std;

int main(void)
{


system("color F0");


cout.setf(ios::fixed);
cout.setf(ios::showpoint);
cout.precision(10);


//獲取時鐘頻率
LARGE_INTEGER m_liPerfFreq={0};
QueryPerformanceFrequency(&m_liPerfFreq);

//獲取初始計數
LARGE_INTEGER m_liPerfStart={0};
QueryPerformanceCounter(&m_liPerfStart);

//測試代碼的位置
for(int ix=0;ix<100000;ix++){
cout<<" ";
}

//獲取最後計數
LARGE_INTEGER liPerfNow={0};
QueryPerformanceCounter(&liPerfNow);

//計算時間

long long time=( ((liPerfNow.QuadPart - m_liPerfStart.QuadPart) * 1000)/m_liPerfFreq.QuadPart);


cout<




system("pause");
return 0;
}



  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved