gpt4 book ai didi

delphi - 如何仅在 Debug模式下激活 ReportMemoryLeaksOnShutdown?

转载 作者:行者123 更新时间:2023-12-03 14:39:12 25 4
gpt4 key购买 nike

我需要激活 ReportMemoryLeaksOnShutdown 功能来报告应用程序的内存泄漏,但仅限于 Debug模式(当 Delphi IDE 运行时)。我怎样才能做到这一点?

最佳答案

如果您的意思是使用“调试”构建配置 (D2007+) 编译的“ Debug模式”,则您将定义 DEBUG 符号,因此即使在使用以下命令运行 oustide 调试器时也可以激活 ReportMemoryLeaksOnShutdown:

{$IFDEF DEBUG}
ReportMemoryLeaksOnShutdown := True;
{$ENDIF}

如果您只想在调试器存在时运行,请查看 RRUZ answer

关于delphi - 如何仅在 Debug模式下激活 ReportMemoryLeaksOnShutdown?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5317384/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com