Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For the most part with ARC (Automatic Reference Counting), we don't need to think about memory management at all with Objective-C objects. It is not permitted to create NSAutoreleasePools anymore, however there is a new syntax:

@autoreleasepool {
    …
}

My question is, why would I ever need this when I'm not supposed to be manually releasing/autoreleasing ?


EDIT: To sum up what I got out of all the anwers and comments succinctly:

New Syntax

@autoreleasepool { … } is new syntax for

NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
…
[pool drain];

More importantly,

  • ARC uses autorelease as well as release
  • It needs an autorelease pool in place to do so
  • ARC doesn't create the autorelease pool for you however,
  • The main thread of every Cocoa app already has an autorelease pool in it
  • There are two occasions when you might want to make use of @autoreleasepool
    • When you are in a secondary thread and there is no auto release pool, you must make your own to prevent leaks, such as myRunLoop(…) { @autoreleasepool { … } return success; }
    • When you wish to create a more local pool, as mattjgalloway has shown in his answer
share|improve this question
@outis - I thought I was crazy cause I saw that too. I guess it doesn't mark it as edited if you correct it fast enough. – DougW Jan 31 '12 at 21:06
1  
@outis - Lol, and now you delete your comment so I look even crazier! For anyone else reading this, the question said "@autorelease" originally. – DougW Jan 31 '12 at 21:07
Yea, I fixed that a minute after posting :P – Mk12 Jan 31 '12 at 21:09

4 Answers

up vote 36 down vote accepted

ARC doesn't get rid of retains, releases and autoreleases, it just adds in the required ones for you. So there are still calls to retain, there are still calls to release, there are still calls to autorelease and there are still auto release pools.

One of the other changes they made with the new Clang 3.0 compiler and ARC is that they replaced NSAutoReleasePool with the @autoreleasepool compiler directive. NSAutoReleasePool was always a bit of a special "object" anyway and they made it so that the syntax of using one is not confused with an object so that it's generally a bit more simple.

So basically, you need @autoreleasepool because there are still auto release pools to worry about. You just don't need to worry about adding in autorelease calls.

An example of using an auto release pool:

- (void)useALoadOfNumbers {
    for (int j = 0; j < 10000; ++j) {
        @autoreleasepool {
            for (int i = 0; i < 10000; ++i) {
                NSNumber *number = [NSNumber numberWithInt:(i+j)];
                NSLog(@"number = %p", number);
            }
        }
    }
}

A hugely contrived example, sure, but if you didn't have the @autoreleasepool inside the outer for-loop then you'd be releasing 100000000 objects later on rather than 10000 each time round the outer for-loop.

Update: Also see this answer - http://stackoverflow.com/a/7950636/1068248 - for why @autoreleasepool is nothing to do with ARC.

Update: I took a look into the internals of what's going on here and wrote it up on my blog. If you take a look there then you will see exactly what ARC is doing and how the new style @autoreleasepool and how it introduces a scope is used by the compiler to infer information about what retains, releases & autoreleases are required.

share|improve this answer
ARC doesn't get rid of retains… But your code doesn't compile under ARC if you have a single call to any of these, so what is it that you mean? – Mk12 Jan 31 '12 at 21:14
1  
It doesn't get rid of retains. It adds them in for you. Reference counting is still going in, it's just automatic. Hence Automatic Reference Counting :-D. – mattjgalloway Jan 31 '12 at 21:16
3  
So why doesn't it add in the @autoreleasepool for me too? If I'm not controlling what gets autoreleased or released (ARC does that for me), how should I know when to set up an autorelease pool? – Mk12 Jan 31 '12 at 21:18
1  
But you have control over where your auto release pools go still. There's one wrapped around your whole app by default, but you might want more. – mattjgalloway Jan 31 '12 at 21:27
1  
Good question. You just have to "know". Think of adding one as akin to why one might, in a GC language, add a hint to a garbage collector to go ahead and run a collect cycle now. Maybe you know there's a ton of objects ready to be cleared out, you have a loop that allocates a bunch of temp objects, so you "know" (or Instruments might tell you :) that adding a release pool around the loop would be a good idea. – Graham Perks Jan 31 '12 at 21:28
show 7 more comments

@autoreleasepool doesn't autorelease anything. It creates an autorelease pool, so that when the end of block is reached, any objects that were autoreleased by ARC while the block was active will be sent release messages. Apple's Advanced Memory Management Programming Guide explains it thus:

At the end of the autorelease pool block, objects that received an autorelease message within the block are sent a release message—an object receives a release message for each time it was sent an autorelease message within the block.

share|improve this answer
Not necessarily. The object will receive a release message but if the retain count is > 1 the object will NOT be deallocated. – andybons Apr 17 at 2:55
@andybons: updated; thanks. Is this a change from pre-ARC behavior? – outis Apr 19 at 20:48
nope. Same way as it was before. – andybons Apr 24 at 22:31

It's because you still need to provide the compiler with hints about when it is safe for autoreleased objects to go out of scope.

share|improve this answer
Can you give me an example of when you would need to do this? – Mk12 Jan 31 '12 at 21:10
Using Autorelease Pools – rob mayoff Jan 31 '12 at 21:18
So before ARC, for example, I had a CVDisplayLink running on a secondary thread for my OpenGL app, but I didn't create an autorelease pool in its runloop because I knew I wasn't autorealeasing anything (or using libraries that do). Does that mean now I do need to add @autoreleasepool because I don't know if ARC might decide to autorelease something? – Mk12 Jan 31 '12 at 21:24
@Mk12 - No. You will always still have an auto release pool that gets drained each time round the main run loop. You should only need to add one when you want to ensure that objects that have been autoreleased get drained before they would otherwise - for example, the next time round the run loop. – mattjgalloway Jan 31 '12 at 21:33
2  
@DougW - I took a look into what the compiler is actually doing and blogged about it here - iphone.galloway.me.uk/2012/02/a-look-under-arcs-hood-–-episode-3/ . Hopefully explains what's going on at both compile-time and run-time. – mattjgalloway Feb 1 '12 at 10:56
show 6 more comments

People often misundertand ARC for some kind of garbage collection or the like. The truth is that, after some time people at Apple (thanks to llvm and clang projects) realized that Objective-C's memory administration (all the retains and releases, etc.) can be fully automatized at compile time. This is, just by reading the code, even before it is run! :)

In order to do so there is only one condition: We MUST follow the rules, otherwise the compiler would not be able to automatise the process at compile time. So, to ensure that we never break the rules, we are not allowed to explicitly write release, retain, etc. Those calls are Automatically injected into our code by the compiler. Hence internally we still have autoreleases, retain, release, etc. It is just we don't need to write them anymore.

The A of ARC is automatic at compile time which is much better than at run time like gargabe collection.

We still have @autoreleasepool{...} because having it does not break any of the rules, we are free create/drain our pool anytime we need it :).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.