Delphi计算程序运行时间
Posted fansizhe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Delphi计算程序运行时间相关的知识,希望对你有一定的参考价值。
1 var 2 StartTime, EndTime: cardinal; 3 begin 4 StartTime := GetTickCount; 5 sleep(1000); 6 EndTime := GetTickCount; 7 caption := (IntToStr(EndTime - StartTime) + ‘ ms‘); 8 end;
转:Delphi 计算程序运行时间 http://www.delphitop.com/html/chengxu/2882.html
以上是关于Delphi计算程序运行时间的主要内容,如果未能解决你的问题,请参考以下文章