gettickcount
【函数名】 gettickcount
【库名】 kernel32
【说明】 用于获取自windows启动以来经历的时间长度(毫秒)
【返回值】 Long,以毫秒为单位的windows运行时间
通常用来计算某个操作所使用的时间:
Start:=GetTickCount;
...//执行耗时的操作
Stop:=GetTickCount;
TimeUsed:=(Stop-Start)/1000; //使用了xxx秒
也可以用来做延时程序:
Procedure TForm1.Delay(Msecs: integer);
var
firstTickCount : real;
begin
firstTickCount := GetTickCount;
Repeat
Until ((GetTickCount - firstTickCount) >= longInt(Msecs));
end;
还可以用来判断和控制隔一段时间才执行一次的方法:
if ((GetTickCount - MktHQRefreshTime) p 1000) >= SSConfig.HqRefreshTime then //根据配置的时间回扫挂单
begin
MktHQRefreshTime := GetTickCount;
HSGDTradeTask(con);
t4 := Now;
AddLog(Format('行情回扫挂单,总耗时%5.2f ms', [(t4 - t3) * MSecsPerDay ]));
end;
相关阅读
python+opencv计算代码运行时间:time库和opencv自带方
import cv2import time#################
OpenCV:计时函数getTickCount、getTickFrequency
1. getTickCount() & getTickFrequency() getTickCount():返回CPU自某个时间以来走过的时钟周期数。getTickFrequency():返回CPU
time.h中的声明:clock_t clock(void);这个函数返回从“程序启动”到“程序中调用clock()函数”之间的CPU时钟计时单元(clock tick
<link rel="stylesheet" href="https://csdnimg.cn/release/phoenix/template/css/ma