程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> DELPHI高精度計時方法

DELPHI高精度計時方法

編輯:Delphi

  //取毫秒級時間精度(方法一):
  var
    t1,t2:int64;
    r1:int64;
  begin
    t1:=GetTickCount;//獲取開始計數 Windows API
    sleep(1000);{do...}//執行要計時的代碼
    t2:=GetTickCount;//獲取結束計數值
    r1:=t2-t1;//取得計時時間,單位毫秒(ms)
    showmessage(inttostr(r1));
  end;

  //取毫秒級時間精度(方法二):
  //use DateUtils;//引用DateUtils單位
  var
    t1,t2:tdatetime;
    r1:int64;
  begin
    t1:=now();//獲取開始計時時間
    sleep(1000);{do...}//執行要計時的代碼
    t2:=now();//獲取結束計時時間
    r1:=SecondsBetween(t2,t1);//取得計時時間,單位秒(s)
    r1:=MilliSecondsBetween(t2,t1);//取得計時時間,單位毫秒(ms)
    showmessage(inttostr(r1));
  end;

  //注:以上兩種方式經本人測試好像只能產生0.01秒的計時精度

  //取系統級時間精度:
  var
    c1:int64;
    t1,t2:int64;
    r1:double;
  begin
    QueryPerformanceFrequency(c1);//Windows API 返回計數頻率(Intel86:1193180)(獲得系統的高性能頻率計數器在一毫秒內的震動次數)
    QueryPerformanceCounter(t1);//Windows API 獲取開始計數值
    sleep(1000);{do...}//執行要計時的代碼
    QueryPerformanceCounter(t2);//獲取結束計數值
    r1:=(t2-t1)/c1;//取得計時時間,單位秒(s)
    r1:=(t2-t1)/c1*1000;//取得計時時間,單位毫秒(ms)
    r1:=(t2-t1)/c1*1000000;//取得計時時間,單位微秒
    showmessage(floattostr(r1));
  end;
  

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