- 人气:
- 放大
- 缩小
- 二维码
- 赞赏
delphi 工程判断内存溢出ReportMemoryLeaksOnShutdown := True;
工程判断内存溢出
ReportMemoryLeaksOnShutdown := True;
program Project1;
uses
Vcl.Forms,
Unit1 in 'Unit1.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
ReportMemoryLeaksOnShutdown := True;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
————————————————
原文链接:https://blog.csdn.net/ozhy111/article/details/88530284