vote up 3 vote down star
1

As I understand it, anything created with an alloc, new, or copy needs to be manually released. For example:

int main(void) {
    NSString *string;
    string = [[NSString alloc] init];
    /* use the string */
    [string release];
}

My question, though, is wouldn't this be just as valid?:

int main(void) {
    NSAutoreleasePool *pool;
    pool = [[NSAutoreleasePool alloc] init];
    NSString *string;
    string = [[[NSString alloc] init] autorelease];
    /* use the string */
    [pool drain];
}
flag
The name of the language is "Objective-C" not "ObjectiveC". It is typically abbreviated "objc". Thus, I will continue to roll back edits that change those tags. – jsumners Sep 17 '08 at 0:29
The tag on this site is "objectivec". There are already a great many items tagged "objectivec". I was not the one who started it, but that's where Objective-C content lives. We could ask for it all to be moved, en masse, to "objective-c" but refusing to go along with it is rude. – Chris Hanson Sep 22 '08 at 23:20
It is not rude, it is proper. Also, this question is not a Cocoa question. Cocoa would indicate the use of the Foundation and the AppKit frameworks. If you want to add an "objectivec" tag, go ahead. I won't delete it. But I will stick by my previous statement. – jsumners Sep 26 '08 at 19:46
This is a Cocoa question; Foundation is part of Cocoa. Furthermore, the tag on this site is objectivec - if you want to use "objective-c" then change all questions to use it. – Chris Hanson Sep 26 '08 at 23:12
Given that the site seems to have "standardised" on 'ObjectiveC', it seems counter-productive to insist on 'Objective-C' unless the site maintainers are able to change all such tags. – mmalc Oct 8 '08 at 1:20
show 1 more comment

4 Answers

vote up 3 vote down check

Yes, you're second code snippit is perfectly valid.

Every time -autorelease is sent to an object, it is added to the outer-most autorelease pool. When the pool is drained, it simply sends -release to all the objects in the pool.

Autorelease pools are simply a convenience that allows you to defer sending -release until "later". That "later" can happen in several places, but the most common in Cocoa GUI apps is at the end of the current run loop cycle.

link|flag
where's the end of the current run loop cycle, if I don't have an loop? – Thanks Apr 13 at 7:23
vote up -3 vote down

Yes and no. You would end up releasing the string memory but leaking the NSAutoReleasePool object into memory by using drain instead of release if you ran this under a garbage collected (not memory managed) environment.

drain

In a garbage collected environment, triggers garbage collection if memory allocated since last collection is greater than the current threshold; otherwise behaves as release.

Otherwise, it's similar, yes. I should point out that your statement "anything called with new, alloc or init" should not include "init", because "init" doesn't allocate memory, it only sets up the object (constructor fashion). If you received an alloc'd object and your function only called init as such, you would not release it:

- (void)func:(NSObject*)allocd_but_not_init
{
    [allocd_but_not_init init];
}

That does not consume any more memory than it you already started with (assuming init doesn't instantiate objects, but you're not responsible for those anyway).

link|flag
I don't feel comfortable leaving this answer as accepted when your information about drain isn't quite right. See developer.apple.com/documentation/Cocoa/… Update and I will re-accept. – jsumners Sep 16 '08 at 4:16
What is inaccurate about the reply? In a garbage collected environment (as stated), drain does not delete the AutoReleasePool, so you will leak memory unless you used release. The quote I listed was straight from the horse's mouth, the docs on drain. – Loren Segal Sep 17 '08 at 19:27
Loren: Under GC, -[NSAutoreleasePool drain] will trigger a collection. -retain, -release, and -autorelease are all ignored by the collector; that's why -drain is used on autorelease pools under GC. – Chris Hanson Sep 23 '08 at 8:04
In the documentation for 'drain': In a managed memory environment, this behaves the same as calling release. Thus you will not leak memory if you use 'drain' instead of release. – mmalc Oct 8 '08 at 1:17
vote up 1 vote down

No, you're wrong. The documentation states clearly that under non-GC, -drain is equivalent to -release, meaning the NSAutoreleasePool will not be leaked.

link|flag
I wondered why Xcode would generate code with -drain if that were the case. I used -drain because I thought it was equivalent to -release based on the code generated by Xcode. – jsumners Sep 16 '08 at 0:01
It is fundamentally impossible to 'leak' a NSAutoreleasePool: developer.apple.com/mac/library/… – johne Sep 6 at 3:18
vote up 3 vote down

NSAutoreleasePool: drain vs. release

Since the function of drain and release seem to be causing confusion, it may be worth clarifying here (although this is covered in the documentation...).

Strictly speaking, from the big picture perspective drain is not equivalent to release:

In a reference-counted environment, drain does perform the same operations as release, so the two are in that sense equivalent. To emphasise, this means you do not leak a pool if you use drain rather than release.

In a garbage-collected environment, release is a no-op. Thus it has no effect. drain, on the other hand, contains a hint to the collector that it should "collect if needed". Thus in a garbage-collected environment, using drain helps the system balance collection sweeps.

link|flag
It is fundamentally impossible to 'leak' a NSAutoreleasePool. This is because pools operate like a stack. Instantiating a pool pushes that pool on to the top of that threads autorelease pool stack. -release causes that pool to pop from the stack AND any pools that were pushed on top of it, but for whatever reason were not popped. – johne Sep 6 at 3:12

Your Answer

Get an OpenID
or

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