Delphi 2007 秒表类
是否有一个秒表类(最好是开源的)提供与 Delphi XE 中的 Diagnostics.TStopwatch
相同的服务?
Is there a stopwatch Class (preferably opensource) providing the same service as Diagnostics.TStopwatch
in Delphi XE does?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
绝地计划中的 JCLCounter 与 TStopwatch 非常相似。
JCLCounter from Project Jedi is very similar to TStopwatch.
我意识到它的技术含量较低,但 Win32 API
GetTickCount
函数对我来说已经足够好了。在大多数 PC 上,分辨率约为 15-20 毫秒。我这样使用它,没有任何类,但你可以轻松编写自己的类:
I realize it's low tech, but the Win32 API
GetTickCount
function works well enough for me. On most PCs the resolution is around 15-20 milliseconds.I use it like this, without any classes, but you could easily write your own class:
我的偏好是这个 (TstopUhr )实现在 Delphi Praxis 中找到论坛。
摘录:
使用示例:
它提供了与问题评论线程中推荐的 RRUZ 类似的功能。
My preference goes to this (TStopUhr) implementation found in Delphi Praxis forum.
Excerpt:
Usage sample:
It provides a similar functionality to what RRUZ recommended in the question's comment thread.