博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Delphi跨平台下的GetTickCount,GetCurrentThreadID
阅读量:6820 次
发布时间:2019-06-26

本文共 342 字,大约阅读时间需要 1 分钟。

Delphi跨平台下的GetTickCount,GetCurrentThreadID

在Windows下只要uses Windows,就有这两个API可调用GetTickCount,GetCurrentThreadID

如果我们需要跨平台使用这两个函数,就不能仅仅Uses Windows了。

如果需要跨平台使用GetTickCount,可以uses System.Classes,然后使用类方法:TThread.GetTickCount

如果需要跨平台使用GetCurrentThreadID,则仅需引用不同的单元即可:

uses 

{$ifdef MSWINDOWS}
Windows;
{$endif}
{$ifdef POSIX}
Posix.Pthread;
{$endif}

转载地址:http://nsozl.baihongyu.com/

你可能感兴趣的文章