Understanding reference counting with Cocoa / Objective C - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T09:35:24Z http://stackoverflow.com/feeds/question/6578 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c 23 Understanding reference counting with Cocoa / Objective C Matt Sheppard 2008-08-09T03:13:04Z 2009-11-09T21:49:49Z <p>I'm just beginning to have a look at Objective C and Cocoa with a view to playing with he iPhone SDK. I'm reasonably comfortable with C's malloc and free concept, but Cocoa's references counting scheme has me rather confused. I'm told it's very elegant once you understand it, but I'm just not over the hump yet.</p> <p>I guess my question is, can anyone briefly explain release, retain and autorelease and the conventions about their use in a way which makes it click for me?</p> <p>(Or failing that, what did you read which helped you get it?)</p> http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/6592#6592 5 Answer by NilObject for Understanding reference counting with Cocoa / Objective C NilObject 2008-08-09T03:48:10Z 2008-08-09T03:48:10Z <p>Objective-C uses <a href="http://en.wikipedia.org/wiki/Reference_counting" rel="nofollow">Reference Counting</a>, which means each Object has a reference count. When an object is created, it has a reference count of "1". Simply speaking, when an object is referred to (ie, stored somewhere), it gets "retained" which means its reference count is increased by one. When an object is no longer needed, it is "released" which means its reference count is decreased by one.</p> <p>When an object's reference count is 0, the object is freed. This is basic reference counting.</p> <p>For some languages, references are automatically increased and decreased, but objective-c is not one of those languages. Thus the programmer is responsible for retaining and releasing.</p> <p>A typical way to write a method is:</p> <pre><code>id myVar = [someObject someMessage];<br>.... do something ....;<br>[myVar release];<br>return someValue;<br></code></pre> <p>The problem of needing to remember to release any acquired resources inside of code is both tedious and error-prone. Objective-C introduces another concept aimed at making this much easier: Autorelease Pools. Autorelease pools are special objects that are installed on each thread. They are a fairly simple class, if you look up NSAutoreleasePool.</p> <p>When an object gets an "autorelease" message sent to it, the object will look for any autorelease pools sitting on the stack for this current thread. It will add the object to the list as an object to send a "release" message to at some point in the future, which is generally when the pool itself is released.</p> <p>Taking the code above, you can rewrite it to be shorter and easier to read by saying:</p> <pre><code>id myVar = [[someObject someMessage] autorelease];<br>... do something ...;<br>return someValue;<br></code></pre> <p>Because the object is autoreleased, we no longer need to explicitly call "release" on it. This is because we know some autorelease pool will do it for us later.</p> <p>Hopefully this helps. The Wikipedia article is pretty good about reference counting. More information about <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/Concepts/AutoreleasePools.html" rel="nofollow">autorelease pools can be found here</a>. Also note that if you are building for Mac OS X 10.5 and later, you can tell Xcode to build with garbage collection enabled, allowing you to completely ignore retain/release/autorelease.</p> http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/6598#6598 3 Answer by Matt Sheppard for Understanding reference counting with Cocoa / Objective C Matt Sheppard 2008-08-09T03:59:35Z 2008-08-09T03:59:35Z <p>Joshua (<a href="#6591" rel="nofollow">#6591</a>) - The Garbage collection stuff in Mac OS X 10.5 seems pretty cool, but isn't available for the iPhone (or if you want your app to run on pre-10.5 versions of Mac OS X).</p> <p>Also, if you're writing a library or something that might be reused, using the GC mode locks anyone using the code into also using the GC mode, so as I understand it, anyone trying to write widely reusable code tends to go for managing memory manually.</p> http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/6610#6610 1 Answer by Mike McMaster for Understanding reference counting with Cocoa / Objective C Mike McMaster 2008-08-09T04:25:46Z 2008-08-09T04:28:59Z <p>NilObject's answer is a good start. Here's some supplemental info pertaining to manual memory management (required on the iPhone).</p> <p>If you personally alloc/init an object, it comes with a reference count of 1. You are responsible for cleaning up after it when it's no longer needed, either by calling [foo release] or [foo autorelease]. release cleans it up right away, whereas autorelease adds the object to the autorelease pool, which will automatically release it at a later time. </p> <p>autorelease is primarily for when you have a method that needs to return the object in question (so you can't manually release it, else you'll be returning a nil object) but you don't want to hold on to it, either.</p> <p>If you acquire an object where you did not call alloc/init to get it -- for example:</p> <pre><code>foo = [NSString stringWithString:@"hello"];<br></code></pre> <p>but you want to hang on to this object, you need to call [foo retain]. Otherwise, it's possible it will get autoreleased and you'll be holding on to a nil reference (as it would in the above stringWithString example). When you no longer need it, call [foo release].</p> http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/6614#6614 41 Answer by Matt Dillard for Understanding reference counting with Cocoa / Objective C Matt Dillard 2008-08-09T04:40:49Z 2009-11-09T21:49:49Z <p>Let's start with <code>retain</code> and <code>release</code>; <code>autorelease</code> is really just a special case once you understand the basic concepts. </p> <p>In Cocoa, each object keeps track of how many times it is being referenced (specifically, the <code>NSObject</code> base class implements this). By calling <code>retain</code> on an object, you are telling it that you want to up its reference count by one. By calling <code>release</code>, you tell the object you are letting go of it, and its reference count is decremented. If, after calling <code>release</code>, the reference count is now zero, then that object's memory is freed by the system.</p> <p>The basic way this differs from <code>malloc</code> and <code>free</code> is that any given object doesn't need to worry about other parts of the system crashing because you've freed memory they were using. Assuming everyone is playing along and retaining/releasing according to the rules, when one piece of code retains and then releases the object, any other piece of code also referencing the object will be unaffected.</p> <p>What can sometimes be confusing is knowing the circumstances under which you should call <code>retain</code> and <code>release</code>. My general rule of thumb is that if I want to hang on to an object for some length of time (if it's a member variable in a class, for instance), then I need to make sure the object's reference count knows about me. As described above, an object's reference count is incremented by calling <code>retain</code>. By convention, it is also incremented (set to 1, really) when the object is created with an "init" method. In either of these cases, it is my responsibility to call <code>release</code> on the object when I'm done with it. If I don't, there will be a memory leak.</p> <p>Example of object creation:</p> <pre><code>NSString* s = [[NSString alloc] init]; // Ref count is 1 [s retain]; // Ref count is 2 - silly // to do this after init [s release]; // Ref count is back to 1 [s release]; // Ref count is 0, object is freed </code></pre> <p>Now for <code>autorelease</code>. Autorelease is used as a convenient (and sometimes necessary) way to tell the system to free this object up after a little while. From a plumbing perspective, when <code>autorelease</code> is called, the current thread's <code>NSAutoreleasePool</code> is alerted of the call. The <code>NSAutoreleasePool</code> now knows that once it gets an opportunity (after the current iteration of the event loop), it can call <code>release</code> on the object. From our perspective as programmers, it takes care of calling <code>release</code> for us, so we don't have to (and in fact, we shouldn't).</p> <p>What's important to note is that (again, by convention) all object creation <em>class</em> methods return an autoreleased object. For example, in the following example, the variable "s" has a reference count of 1, but after the event loop completes, it will be destroyed.</p> <pre><code>NSString* s = [NSString stringWithString:@"Hello World"]; </code></pre> <p>If you want to hang onto that string, you'd need to call <code>retain</code> explicitly, and then explicitly <code>release</code> it when you're done.</p> <p>Consider the following (very contrived) bit of code, and you'll see a situation where <code>autorelease</code> is required:</p> <pre><code>- (NSString*)createHelloWorldString { NSString* s = [[NSString alloc] initWithString:@"Hello World"]; // Now what? We want to return s, but we've upped its reference count. // The caller shouldn't be responsible for releasing it, since we're the // ones that created it. If we call release, however, the reference // count will hit zero and bad memory will be returned to the caller. // The answer is to call autorelease before returning the string. By // explicitly calling autorelease, we pass the responsibility for // releasing the string on to the thread's NSAutoreleasePool, which will // happen at some later. The consequence is that the returned string // will still be valid for the caller of this function. return [s autorelease]; } </code></pre> <p>I realize all of this is a bit confusing - at some point, though, it will click. Here are a few references to get you going:</p> <ul> <li><a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/MemoryMgmt.html" rel="nofollow" title="Apple's introduction to Cocoa's memory management">Apple's introduction</a> to memory management.</li> <li><a href="http://rads.stackoverflow.com/amzn/click/0321503619" rel="nofollow">Cocoa Programming for Mac OS X (3rd Edition)</a>, by Aaron Hillegas - a very well written book will lots of great examples. It reads like a tutorial.</li> <li>If you're truly diving in, you could head to <a href="http://www.bignerdranch.com/" rel="nofollow" title="Big Nerd Ranch">Big Nerd Ranch</a>. This is a training facility run by Aaron Hillegas - the author of the book mentioned above. I attended the Intro to Cocoa course there several years ago, and it was a great way to learn.</li> </ul> http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/6776#6776 0 Answer by NilObject for Understanding reference counting with Cocoa / Objective C NilObject 2008-08-09T13:48:50Z 2008-08-09T21:42:57Z <blockquote> <p><a href="http://beta.stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c#6614" rel="nofollow">Matt Dillard wrote</a>:</p> <p>return [[s autorelease] release];</p> </blockquote> <p>Autorelease does <em>not</em> retain the object. Autorelease simply puts it in queue to be released later. You do not want to have a release statement there.</p> http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/6933#6933 2 Answer by Chris Hanson for Understanding reference counting with Cocoa / Objective C Chris Hanson 2008-08-09T22:27:12Z 2008-08-09T22:27:12Z <p>If you're writing code for the desktop and you can target Mac OS X 10.5, you should at least look into using Objective-C garbage collection. It really will simplify most of your development — that's why Apple put all the effort into creating it in the first place, and making it perform well.</p> <p>As for the memory management rules when not using GC:</p> <ul> <li>If you create a new object using <code>+alloc/+allocWithZone:</code>, <code>+new</code>, <code>-copy</code> or <code>-mutableCopy</code> or if you <code>-retain</code> an object, you are taking ownership of it and must ensure it is sent <code>-release</code>.</li> <li>If you receive an object in any other way, you are <em>not</em> the owner of it and should <em>not</em> ensure it is sent <code>-release</code>.</li> <li>If you want to make sure an object is sent <code>-release</code> you can either send that yourself, or you can send the object <code>-autorelease</code> and the current <em>autorelease pool</em> will send it <code>-release</code> (once per received <code>-autorelease</code>) when the pool is drained.</li> </ul> <p>Typically <code>-autorelease</code> is used as a way of ensuring that objects live for the length of the current event, but are cleaned up afterwards, as there is an autorelease pool that surrounds Cocoa's event processing. In Cocoa, it is <em>far</em> more common to return objects to a caller that are autoreleased than it is to return objets that the caller itself needs to release.</p> http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/8078#8078 6 Answer by Andrew Grant for Understanding reference counting with Cocoa / Objective C Andrew Grant 2008-08-11T18:42:33Z 2008-08-11T18:42:33Z <p>If you understand the process of retain/release then there are two golden rules that are "duh" obvious to established Cocoa programmers, but unfortunately are rarely spelled out this clearly for newcomers.</p> <p>**1) If a function which returns an object has 'alloc', 'create' or 'copy' in its name then the object is yours. You must call [object release] when you are finished with it. Or CFRelease(object) if it's a Core-Foundation object.</p> <p>2) If it does NOT have one of these words in its name then the object belongs to someone else. You must call [object retain] if you wish to keep the object after the end of your function.**</p> <p>You would be well served to also follow this convention in functions you create yourself.</p> <p>(Nitpickers: Yes, there are unfortunately a few API calls that are exceptions to these rules but they are rare).</p> http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/66772#66772 0 Answer by charles for Understanding reference counting with Cocoa / Objective C charles 2008-09-15T20:46:23Z 2008-09-15T20:46:23Z <p>Lots of good information on cocoadev too:</p> <ul> <li><a href="http://www.cocoadev.com/index.pl?MemoryManagement" rel="nofollow">MemoryManagement</a></li> <li><a href="http://www.cocoadev.com/index.pl?RulesOfThumb" rel="nofollow">RulesOfThumb</a></li> </ul> http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/217226#217226 2 Answer by mmalc for Understanding reference counting with Cocoa / Objective C mmalc 2008-10-20T00:42:12Z 2008-10-20T00:42:12Z <p>As ever, when people start trying to re-word the reference material they almost invariably get something wrong or provide an incomplete description.</p> <p>Apple provides a complete description of Cocoa's memory management system in <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/MemoryMgmt.html#//apple_ref/doc/uid/10000011" rel="nofollow">Memory Management Programming Guide for Cocoa</a>, at the end of which there is a brief but accurate summary of the <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/Tasks/MemoryManagementRules.html#//apple_ref/doc/uid/20000994" rel="nofollow">Memory Management Rules</a>.</p> http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/267594#267594 -1 Answer by Olie for Understanding reference counting with Cocoa / Objective C Olie 2008-11-06T03:55:38Z 2008-11-06T03:55:38Z <p>The answers above give clear restatements of what the documentation says; the problem most new people run into is the undocumented cases. For example:</p> <ul> <li><p><strong>Autorelease</strong>: docs say it will trigger a release "at some point in the future." WHEN?! Basically, you can count on the object being around until you exit your code back into the system event loop. The system MAY release the object any time after the current event cycle. (I think Matt said that, earlier.)</p></li> <li><p><strong>Static strings</strong>: NSString *foo = @"bar"; -- do you have to retain or release that? No. How about</p> <p>-(void)getBar { return @"bar"; }</p> <p>... NSString *foo = [self getBar]; // still no need to retain or release</p></li> <li><p><strong>The Creation Rule</strong>: If you created it, you own it, and are expected to release it.</p></li> </ul> <p>In general, the way new Cocoa programmers get messed up is by not understanding which routines return an object with a retainCount > 0</p> <p>Here is a snippet from <a href="http://www.stepwise.com/Articles/Technical/2001-03-11.01.html" rel="nofollow">Very Simple Rules For Memory Management In Cocoa</a>:</p> <p>"<em>Retention Count rules</em></p> <ul> <li>Within a given block, the use of -copy, -alloc and -retain should equal the use of -release and -autorelease.</li> <li>Objects created using convenience constructors (e.g. NSString's stringWithString) are considered autoreleased.</li> <li>Implement a -dealloc method to release the instancevariables you own"</li> </ul> <p>The 1st bullet says: if you called alloc (or new fooCopy), you need to call release on that object. The 2nd bullet says: if you use a convenience constructor <em>and you need the object to hang around</em> (as with an image to be drawn later), you need to retain (and then later release) it. The 3rd should be self explanatory.</p> http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/349176#349176 2 Answer by Abizern for Understanding reference counting with Cocoa / Objective C Abizern 2008-12-08T11:00:52Z 2009-03-01T14:23:23Z <p>There's a screencast available from the MacDeveloperNetwork</p> <p><a href="http://www.mac-developer-network.com/category/videotraining/beginner/" rel="nofollow">Memory Management in Objective-C</a></p> http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/382064#382064 3 Answer by Rob for Understanding reference counting with Cocoa / Objective C Rob 2008-12-19T20:04:07Z 2008-12-19T20:04:07Z <p>I'll not add to the specific of retain/release other than you might want to think about dropping $50 and getting the Hillegass book, but I would strongly suggest getting into using the Instruments tools very early in the development of your application (even your first one!). To do so, Run->Start with performance tools. I'd start with Leaks which is just one of many of the instruments available but will help to show you when you've forgot to release. It's quit daunting how much information you'll be presented with. But check out this tutorial to get up and going fast: <a href="http://www.cimgf.com/2008/04/02/cocoa-tutorial-fixing-memory-leaks-with-instruments/" rel="nofollow">http://www.cimgf.com/2008/04/02/cocoa-tutorial-fixing-memory-leaks-with-instruments/</a></p> <p>Actually trying to <em>force</em> leaks might be a better way of, in turn, learning how to prevent them! Good luck ;)</p> http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c/430854#430854 1 Answer by Graham Lee for Understanding reference counting with Cocoa / Objective C Graham Lee 2009-01-10T10:59:03Z 2009-01-10T10:59:03Z <p>My usual collection of Cocoa memory management articles:</p> <p><a href="http://iamleeg.blogspot.com/2008/12/cocoa-memory-management.html" rel="nofollow">http://iamleeg.blogspot.com/2008/12/cocoa-memory-management.html</a></p>