autorelease探究

10 篇文章 0 订阅

有时候我们需要延迟一个对象的引用计数减一操作,比如:

[cpp]  view plain copy
  1. + (NSArray *)array  
  2. {  
  3.     return [[NSArray alloc] init] autorelease];  
  4. }  

由于方法名并不以alloc, new, copy, mutableCopy开头,并且方法内部使用了alloc,需要对因此产生的引用计数负责。

不过如果直接调用release,将会返回野指针,所以我们需要autorelease机制来延迟释放。


我们需要先创建一个autorelease pool,才能有效地实现autorelease机制,否则会导致内存泄露。

当向一个对象obj发送autorelease消息时,会发生如下过程:

  1. 获取当前autorelease pool,即离事件发生处最近的(inner-most)自动释放池,NSAutoreleasePool实例。
  2. NSAutoreleasePool实例将obj添加到内部维护的数组中,记录起来。
  3. 当发送drain消息给自动释放池时,它会遍历内部维护的数组,向每个元素发送一个release消息。


除了我们显式创建的NSAutoreleasePool实例,系统会默认为我们在主线程创建一个:

[cpp]  view plain copy
  1. @autoreleasepool {  
  2.     return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));  
  3. }  

从可见代码来看,这个自动释放池建立在main函数中,对于我们编码过程中创建的自动释放对象有什么帮助呢?

等到结束UIApplicationMain才释放,跟不释放基本没差别,因为程序运行即将结束。

所以,如果事实真相如此,那么是不合理的。


苹果官方文档有这么一段话:

The Application Kit creates an autorelease pool on the main threadat the beginning of every cycle of the event loop, anddrains it at the end, thereby releasing any autoreleased objects generated while processing an event. If you use the Application Kit, you therefore typically don’t have to create your own pools. If your application creates a lot of temporary autoreleased objects within the event loop, however, it may be beneficial to create “local” autorelease pools to help to minimize the peak memory footprint.

可见,在主线程中每个event loop开始的时候会创建一个autorelease pool,在循环结束时清空自动释放池。

当然,如果在某个局部地方创建很多临时对象,最好也显式创建autorelease pool降低内存峰值。

用代码来求证:

[cpp]  view plain copy
  1. - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event  
  2. {  
  3.     TestObject *testObject = [[[TestObject alloc] init] autorelease];  
  4. }  
  5.   
  6. - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event  
  7. {  
  8.     NSLog(@"Touches Ended\n");  
  9.     [NSAutoreleasePool showPools];  
  10. }  

通过在TestObject的release方法中输出日志信息,可以看到testObject是在touchesEnded事件前被释放的,即event loop结束前。


这是对主线程而言,那么对其它线程呢?

下面又有一段说明:

Each thread (including the main thread) maintains its own stack of NSAutoreleasePool objects (see “Threads”). As new pools are created, they get added to the top of the stack. When pools are deallocated, they are removed from the stack. Autoreleased objects are placed into the top autorelease pool for the current thread. When a thread terminates, it automatically drains all of the autorelease pools associated with itself.

从上面这段话可以得知每个线程都维护着与自己对应的NSAutoreleasePool对象,将其放在线程栈的栈顶。当线程结束时,会清空自动释放池。

同样地可以用代码来说明:

[cpp]  view plain copy
  1. [NSThread detachNewThreadSelector:@selector(onNewThread:) toTarget:self withObject:nil];  
  2.   
  3. - (void)onNewThread:(id)info  
  4. {  
  5.     TestObject *testObject = [[[TestObjectalloc] init] autorelease];  
  6. }  

通过输出结果也可以得知线程结束时,testObject得到释放。


不过,紧接着的一段说明说明了些例外情况:

If you are making Cocoa calls outside of the Application Kit’s main thread—for example if you create a Foundation-only applicationor if youdetach a thread—you need to create your own autorelease pool.

不过当我detach了多个线程出来,发现每个线程仍然有维护autorelease pool。是不是上面这段话我哪里没理解对?幸好在没有autorelease pool存在时,我们向对象发送autorelease消息会有警告输出。


最后,探讨下NSRunLoop和autorelease的关系。

当我们分离了个线程,并且让runloop跑起来,我们可以发现与主线程类似:每个runloop循环结束时会drain下autorelease pool。

通过观察runloop状态可以验证:

[cpp]  view plain copy
  1. #pragma mark - RunLoop Observer  
  2.   
  3. - (void)onNewThread:(id)info  
  4. {  
  5.     NSRunLoop *runloop = [NSRunLoop currentRunLoop];  
  6.     if (!runloop) {  
  7.         return ;  
  8.     }  
  9.       
  10.     NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:5.0f target:self selector:@selector(onTimerFired:) userInfo:nil repeats:NO];  
  11.     [runloop addTimer:timer forMode:NSRunLoopCommonModes];  
  12.       
  13.     CFRunLoopObserverContext context = {  
  14.         0,  
  15.         self,  
  16.         NULL,  
  17.         NULL,  
  18.         NULL  
  19.     };  
  20.       
  21.     CFRunLoopObserverRef observerRef = CFRunLoopObserverCreate(kCFAllocatorDefault, kCFRunLoopAllActivities, YES, 0, &runloopObserverCallback, &context);  
  22.     CFRunLoopAddObserver([runloop getCFRunLoop], observerRef, kCFRunLoopCommonModes);  
  23.       
  24.     [runloop run];  
  25.       
  26.     CFRunLoopRemoveObserver([runloop getCFRunLoop], observerRef, kCFRunLoopCommonModes);  
  27.     CFRelease(observerRef);  
  28. }  
  29.   
  30. static void runloopObserverCallback(CFRunLoopObserverRef observer, CFRunLoopActivity activity, void *info)  
  31. {  
  32.     CFRunLoopActivity currentActivity = activity;  
  33.     switch (currentActivity) {  
  34.         casekCFRunLoopEntry:  
  35.             NSLog(@"kCFRunLoopEntry \n");  
  36.             break;  
  37.               
  38.         casekCFRunLoopBeforeTimers:  
  39.             NSLog(@"kCFRunLoopBeforeTimers \n");  
  40.             break;  
  41.               
  42.         casekCFRunLoopBeforeSources:  
  43.             NSLog(@"kCFRunLoopBeforeSources \n");  
  44.             break;  
  45.               
  46.         casekCFRunLoopBeforeWaiting:  
  47.             NSLog(@"kCFRunLoopBeforeWaiting \n");  
  48.             break;  
  49.               
  50.         casekCFRunLoopAfterWaiting:  
  51.             NSLog(@"kCFRunLoopAfterWaiting \n");  
  52.             break;  
  53.               
  54.         casekCFRunLoopExit:  
  55.             NSLog(@"kCFRunLoopExit \n");  
  56.             break;  
  57.               
  58.         default:  
  59.             NSLog(@"Activity not recognized!\n");  
  60.             break;  
  61.     }  
  62. }  

--------------------------------------------------

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值