Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Consider we are implementing our own thread with lot of autoreleased object. Is it mandatory to use autorelease pool on this scenario if yes/no why?

share|improve this question

2 Answers

up vote 4 down vote accepted

It's mandatory to have an autorelease pool on any thread that you create, because Cocoa internals expect there to be one in place and you will leak memory if it isn't there.

Cocoa always expects there to be an autorelease pool available. If a pool is not available, autoreleased objects do not get released and your application leaks memory. If you send an autorelease message when a pool is not available, Cocoa logs a suitable error message.


Applications that link in Objective-C frameworks typically must create at least one autorelease pool in each of their threads.

share|improve this answer
True, autoreleased object without an autorelease pool is, well... – rokjarc Jun 14 '12 at 19:36
Well, it's not quite mandatory. It is perfectly defined what will happen: objects leak, and messages get logged. While that isn't usually what you want, that doesn't mean it couldn't possibly be what you want… – abarnert Jun 14 '12 at 21:27

It is mandatory even with a single autoreleased object, because otherwise it will leak.

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.