Delphi2010中的fastMM

简介: Delphixe集成了fastMM,这回大家调试程序是的时候可以方便地检查内存泄露了。 使用方法如下: 在project中,添加一行 ReportMemoryLeaksOnShutdown := DebugHook0; DebugHook0 目的...

Delphixe集成了fastMM,这回大家调试程序是的时候可以方便地检查内存泄露了。

使用方法如下:

在project中,添加一行 ReportMemoryLeaksOnShutdown := DebugHook<>0; DebugHook<>0 目的是保证单独运行exe文件不会弹出内存泄露框,源码可以不用注释掉此行

program Project1;

uses Forms,

       Unit1 in 'Unit1.pas' { Form1 } ;

{$R *.res}

begin

ReportMemoryLeaksOnShutdown := DebugHook<>0;

Application.Initialize;

Application.MainFormOnTaskbar := true;

Application.CreateForm(TForm1, Form1);

Application.Run;

end.



相关文章
Delphi技巧集锦下载(共18集)
001_Delphi葵花宝典 002_Delphi精华贴[水木清华] 003_Delphi精华贴[北大未名] 004_DelphiTips 005_Delphi技术专题[CSDN] 006_Delphi编程技巧集[电脑报] 007_Del...
1537 0
|
IDE 数据库 开发工具
Delphi历史版本介绍(二)从Delphi8到DelphiXE3
Delphi历史版本介绍(二)从Delphi8到DelphiXE3 Delphi 8       Delphi8是一个短命的版本,有点像微软的vista的感觉,没有很好的超越7,后来用被2005取代,很多人都是直接从7到D2005的,Delphi8就这样被消损在历史的烟尘中。
2378 0