gpt4 book ai didi

delphi - Delphi 西雅图的 Windows 10 TNotification 内存泄漏?

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

我正在我的应用程序中实现 Windows 10 通知。然而,下面的代码(运行良好)显然给出了 1 个 TNotification 对象和 2 个字符串的备忘录泄漏,但我在 block 末尾释放了该对象:

aNotification := NotificationCenter.CreateNotification;

//-- If not assigned then must be Win 8.1 or below
if not assigned(aNotification) then
exit;

try
aNotification.Title := AlignMixVersionName + ' License';
aNotification.AlertBody := aText;

NotificationCenter.PresentNotification(aNotification);

finally
aNotification.Free;
end;

我是在做一些愚蠢的事情还是在通知的实现中存在内存泄漏?

  • 史蒂夫

最佳答案

这确实是由TNotificationCenterDelegateActivated引起的泄漏。在其 Create 中,创建了 TNotification 参数的副本,但从未释放。

似乎负责此代码的一些开发人员不太熟悉非 ARC 环境。

关于delphi - Delphi 西雅图的 Windows 10 TNotification 内存泄漏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36310645/

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