您可以使用程序Process Explorer查看运行应用程序的句柄数。有没有办法用Delphi代码来获取这个数字?我有兴趣跟踪应用程序本身的编号;不要像Process Explorer那样找到其他应用程序使用的句柄数。
我的目的是让应用程序跟踪/检测可能的资源泄漏。
答案 0 :(得分:12)
使用GetProcessHandleCount
功能。此API函数是在 Winapi.Windows 单元导入的Delphi的最新版本中(因此您可以省略显示的版本):
function GetProcessHandleCount(hProcess: THandle; var pdwHandleCount: DWORD): BOOL; stdcall;
external 'kernel32.dll';
procedure TForm1.Button1Click(Sender: TObject);
var
HandleCount: DWORD;
begin
if GetProcessHandleCount(GetCurrentProcess, HandleCount) then
ShowMessage('Handle count: ' + IntToStr(HandleCount));
end;