我正在我的应用程序中实现
Windows 10通知.但是,下面的代码(运行正常)显然会给出1个TNotification对象和2个字符串的备忘录泄漏,但我在块的末尾释放了对象:
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引起的泄漏.在其创建中创建了一个TNotification参数的副本,但从未释放.
原文链接:https://www.f2er.com/windows/365213.html似乎一些负责此代码的开发人员并不熟悉非ARC环境.