iPhone - 为什么静态分析器没有检测到这个?

发布于 2024-10-21 14:12:12 字数 239 浏览 0 评论 0原文

@property(nonatomic, retain) NSMutableArray* playerList;

...

team.playerList = [[NSMutableArray alloc] initWithArray:self.playerList];

这是内存泄漏吧?

那么为什么静态分析器无法识别出这一点呢?

@property(nonatomic, retain) NSMutableArray* playerList;

...

team.playerList = [[NSMutableArray alloc] initWithArray:self.playerList];

This is a memory leak right?

So why couldn't the static analysier pick this up?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我要还你自由 2024-10-28 14:12:12

是的,这就是内存泄漏;您需要自动释放该数组或在设置属性后手动释放它。我不确定为什么静态分析器会错过它 - 您可能会考虑针对开发人员工具提交错误

Yes, that's a memory leak; you need to either autorelease that array or manually release it after setting the property. I'm not sure why the static analyzer missed it—you might consider filing a bug against the developer tools.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文