返回时自动释放时泄漏

发布于 2024-12-01 17:16:58 字数 325 浏览 0 评论 0原文

我发现了这个奇怪的事情。 XCode 仪器告诉我这条线

return (SDZPerson*)[[[SDZPerson alloc] initWithNode: node] autorelease];

存在泄漏。但如果我将其更改为:

SDZPerson* person = [[[SDZPerson alloc] initWithNode: node] autorelease];
return person;

仪器不再报告此位置的泄漏。到底是真的漏了还是什么都没有?

预先感谢大家。

I found this strange thing. XCode instruments tell me that this line

return (SDZPerson*)[[[SDZPerson alloc] initWithNode: node] autorelease];

leaks. But if i change it to:

SDZPerson* person = [[[SDZPerson alloc] initWithNode: node] autorelease];
return person;

Instruments no longer report leak in this place. Is it really a leak or is it nothing?

Thank you all in advance.

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

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

发布评论

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

评论(1

メ斷腸人バ 2024-12-08 17:16:58

即使两个代码片段略有不同(第一个代码片段包含类型转换),我怀疑仪器会因为 return 语句中的自动释放而将其指示为泄漏。

可以使用return语句中添加autorelease。

你应该尝试一下

SDZPerson* person = [[SDZPerson alloc] init];
/** do your stuff here if needed */
return [person autorelease];

,甚至

return [[[SDZPerson alloc] init] autorelease;

Even if the two code snippets are slightly different (the 1st one contain a typecasting), I doubt the instruments indicate this as a leak due to the autorelease in the return statement.

Adding autorelease in the return statement can be used.

You should give it a try to

SDZPerson* person = [[SDZPerson alloc] init];
/** do your stuff here if needed */
return [person autorelease];

or even

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