Is this an objective-c memory leak? - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T08:37:28Zhttp://stackoverflow.com/feeds/question/756908http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/756908/is-this-an-objective-c-memory-leak2Is this an objective-c memory leak?Coocoo4Cocoa2009-04-16T16:19:45Z2009-04-16T17:00:30Z
<p>I know that if you do the following you most certainly have a memory leak:</p>
<pre><code>id foo = [[NSObject alloc] init];
foo = nil;
</code></pre>
<p>But, what if you're using self.foo, a property with retain? And your code instead looks like the following:</p>
<pre><code>foo = [[NSObject alloc] init];
self.foo = nil;
</code></pre>
<p>Is that still a memory leak since the accessor releases the memory first before setting it to nil?</p>
http://stackoverflow.com/questions/756908/is-this-an-objective-c-memory-leak/756949#7569493Answer by sigjuice for Is this an objective-c memory leak?sigjuice2009-04-16T16:32:08Z2009-04-16T16:32:08Z<p><code>self.foo = nil</code> would translate into</p>
<pre><code>[nil retain]
[foo release]
foo = nil
</code></pre>
<p>There is no memory leak here.</p>
http://stackoverflow.com/questions/756908/is-this-an-objective-c-memory-leak/756950#7569502Answer by Alex for Is this an objective-c memory leak?Alex2009-04-16T16:32:21Z2009-04-16T16:49:16Z<p>Nope, the second example is not a memory leak. In fact, that's how I deal with <code>retain</code> properties in my <code>dealloc</code> method. It's just a lot cleaner.</p>
<p>The only thing you have to be careful about is making sure not to write</p>
<pre><code>self.foo = [[NSObject alloc] init];
</code></pre>
<p>or else you'll double-retain the object and end up with a memory leak.</p>
http://stackoverflow.com/questions/756908/is-this-an-objective-c-memory-leak/756977#7569770Answer by porkchop for Is this an objective-c memory leak?porkchop2009-04-16T16:37:54Z2009-04-16T16:37:54Z<p>I don't think so as by doing <code>self.foo = nil</code> you are essentially using the setter and getting the memory management along for free.</p>
http://stackoverflow.com/questions/756908/is-this-an-objective-c-memory-leak/756986#7569861Answer by Marc Charbonneau for Is this an objective-c memory leak?Marc Charbonneau2009-04-16T16:40:34Z2009-04-16T16:40:34Z<p>Properties make it your code look like assignment, but in reality they're the same as traditional accessor methods you might have written yourself prior to Obj-C 2.0. With properties Obj-C is simply generating the accessor methods behind the scenes for you instead using the keywords you specify in the declaration (assuming you use @synthesize and don't write your own accessor methods anyway).</p>
http://stackoverflow.com/questions/756908/is-this-an-objective-c-memory-leak/757076#7570760Answer by Barry Wark for Is this an objective-c memory leak?Barry Wark2009-04-16T16:57:34Z2009-04-16T16:57:34Z<p>No, there is no memory leak. The code in your second example is logically equivalent to </p>
<pre><code>foo = [[NSObject alloc] init];
[nil retain];
[foo release];
foo = nil;
</code></pre>
<p>because the @synthesized setter is logicall equivalent to </p>
<pre><code>- (void)setFoo:(id)newFoo {
[newFoo retain];
[foo release];
foo = newFoo;
}
</code></pre>
<p>It's worth noting that setting <code>foo</code> directly is probably not something you want to do outside of an init method. If you assign a value to <code>foo</code> directly, you bypass the automatic KVO notification (you would have to wrap your assignment in a <code>willChangeValueForKey:/didChangeValueForKey:</code> pair) <em>and</em> you break any subclass' behavior if it overrides the <code>setFoo:</code> method, expecting all modifications of <code>foo</code> to go through the setter.</p>
<p>You assign directly to <code>foo</code> in an init method because the <code>setFoo:</code> method or a subclass' overriden <code>setFoo:</code> method may have side-effects or depend on the instance's fully initialized.</p>
<p>Similarly, you would use <code>[foo release]</code> rather than <code>self.foo = nil;</code> in the <code>-dealloc</code> method for the same reasons.</p>
http://stackoverflow.com/questions/756908/is-this-an-objective-c-memory-leak/757085#7570851Answer by Peter Hosey for Is this an objective-c memory leak?Peter Hosey2009-04-16T17:00:30Z2009-04-16T17:00:30Z<p>All the answers so far assume that “<code>foo</code>” in the first line of the second example is the instance variable behind the <code>foo</code> property. This is the default behavior.</p>
<p>If the <code>foo</code> that the first line assigns to is a local variable, then the <code>foo</code> property is irrelevant, and you will leak the object unless you release it later in the method.</p>
<p>If <code>foo</code> is an instance variable, but the <code>foo</code> property is actually backed by a different instance variable, or no instance variable at all, then (a) you are writing hard-to-maintain code and (b) it may be a leak.</p>
<p>Finally, echoing the previous answers: If <code>foo</code> is the instance variable backing the <code>foo</code> property, then this is not a leak, since the <code>setFoo:</code> method that you call in the second line will release the object that you put in the <code>foo</code> instance variable in the first line.</p>