Windows 10中的内存泄漏Delphi Seattle中的TNotification?

前端之家收集整理的这篇文章主要介绍了Windows 10中的内存泄漏Delphi Seattle中的TNotification?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在我的应用程序中实现 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参数的副本,但从未释放.

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

原文链接:https://www.f2er.com/windows/365213.html

猜你在找的Windows相关文章