本文介绍了是否"self.propery = [[SomeClass alloc] init];"?泄漏记忆?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在Objective-C中书写安全吗
Is it safe in Objective-C to write
self.propery = [[SomeClass alloc] init];
代替
SomeClass *tmp = [[SomeClass alloc] init];
self.property = tmp;
[tmp release];
还是第一种形式会泄漏内存?
or will the first form leak memory?
推荐答案
除非提供自定义属性设置器,否则第一个示例将泄漏.您可以使用:
The first example leaks unless you provide a custom property setter. You can use:
self.propery = [[[SomeClass alloc] init] autorelease];
相反.
这篇关于是否"self.propery = [[SomeClass alloc] init];"?泄漏记忆?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!