NSMutableArray 直接分配时的内存管理

发布于 2024-12-13 18:40:57 字数 388 浏览 0 评论 0 原文

我知道当我们将一个对象 obj 添加到 NSMutableArray 中时,它会获取该对象的 co_ownership 。因此,我们可以在将对象 obj 添加到 NSMutableArray 后释放该对象。而当我们释放NSMutableArray的时候,它也会调用其中所有对象的释放。所以不存在内存泄漏,一切都很好。

我的疑问是,如果这样做

NSMutableArray myArray = [[NMutableArray alloc] init];
[myArray addObject:[MyClass alloc] init]];
[myArray release];

会导致我们的程序中出现内存泄漏吗?

I know that when we add an object obj into a NSMutableArray, it takes the co_ownership of that object. So we can release the object obj just after adding that into the NSMutableArray. And when we release the NSMutableArray, it also calls the release of all the objects in it. So there is no memory leak and every thing is fine.

My doubt is if do like

NSMutableArray myArray = [[NMutableArray alloc] init];
[myArray addObject:[MyClass alloc] init]];
[myArray release];

Will this Cause any memory leak in our program?

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

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

发布评论

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

评论(2

許願樹丅啲祈禱 2024-12-20 18:40:57

是的,确实会导致内存泄漏。

令人反感的行是(为了清楚起见,我将其分开):

[myArray addObject:
    [[MyClass alloc] init] // <- An instance is allocated with ownership
]; // <- The array retains the instance

最后, 保留/释放所有权不平衡并导致泄漏。

一种解决方案是在添加之前进行分配:

MyClass *obj = [MyClass alloc] init];
[[myArray addObject:obj];
[obj release];

Yes indeed, it will cause a memory leak.

The offensing line is (I have splitted it for clarity):

[myArray addObject:
    [[MyClass alloc] init] // <- An instance is allocated with ownership
]; // <- The array retains the instance

At the end, the retain/release ownership are not balanced and causes the leak.

One solution is to make the allocation before the addition:

MyClass *obj = [MyClass alloc] init];
[[myArray addObject:obj];
[obj release];
野稚 2024-12-20 18:40:57

autorelease 放入您的 MyClass 中。这应该可以修复任何内存泄漏

NSMutableArray myArray = [[NMutableArray alloc] init];
[myArray addObject:[[[MyClass alloc] init] autorelease];
[myArray release];

Put autorelease for your MyClass. That should fix any memory leaks

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