内存管理。解除锁定。 iOS系统
这是正确的吗?
- (void)dealloc {
[super dealloc];
[stageObjects release];
}
或者我应该在所有版本之后调用
[super dealloc]
Always,我的意思是这个函数的最后一行?
Is this correct?
- (void)dealloc {
[super dealloc];
[stageObjects release];
}
Or should I call
[super dealloc]
Always after all releases, I mean last line of this function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您必须始终最后调用
[super dealloc];
。毕竟,这个对象可能总是在调用 super 返回后被释放。You must always call
[super dealloc];
last. After all, this very object might always be deallocated after the call to super returns.应该是 dealloc 方法中调用的最后一行。
should be the last line to call in dealloc method.
您还可以为 dealloc 对象创建如下宏,因此您不应该每次都编写方法。
RELEASE_SAFELY (对象) [对象释放], object=nil
You can also make macro as below for dealloc objects and because of it you should not write method every time.
RELEASE_SAFELY (object) [object release], object=nil