对于dealloc函数有两种做法,
一个是直接将实例变量release掉:
-(void)dealloc
{
[subject release];
[super dealloc];
}
另一种是将变量relsease 掉再将它指向nil;
-(void)dealloc
{
[subject release]
subject=nil;
[super dealloc];
}
两种方法结果是一致的,但是有些许的差别。
变量在被release掉后,系统将该内存标识为可用,nil只是起到重置指针的作用。
但是在object-c中给nil对象发送消息是,什么也不会发生,这样在调试的时候,很难找到出错的地方,所以
在调试阶段最后用第一种,为了上线的时候用第二种,
可以通过宏定义
- #if DEBUG
- #define MCRelease(x) [x release]
- #else
- #define MCRelease(x) [x release], x = nil
- #endif