Setting an object nil versus release+realloc - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T23:50:24Zhttp://stackoverflow.com/feeds/question/626879http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/626879/setting-an-object-nil-versus-releaserealloc1Setting an object nil versus release+reallocCoocoo4Cocoa2009-03-09T16:03:52Z2009-12-02T10:08:24Z
<p>This is not a garbage collected environment</p>
<p>I have a class instance variable which at some point in my runtime, I need to re-initialize with a different data set than it was originally constructed with.</p>
<p>Hypothetically speaking, what if I have an <code>NSMutableArray</code> or an <code>NSMutableDictionary</code>, would it be more efficient to do something such as:</p>
<pre><code>[myArr release];
myArr = [[NSMutableArray alloc] init....];
</code></pre>
<p>or just,</p>
<pre><code>myArr = nil;
</code></pre>
<p>Will myArr release the object and leave me without a pointer to the storage in memory so I can re-use myArr?</p>
http://stackoverflow.com/questions/626879/setting-an-object-nil-versus-releaserealloc/626905#62690512Answer by Abizern for Setting an object nil versus release+reallocAbizern2009-03-09T16:07:51Z2009-03-16T10:31:24Z<p>If you do <code>myArr=nil;</code> by itself, then you've lost the pointer to which you can send the <code>release</code> message to. There is no magic to <code>release</code> your object.</p>
<p>And, as gs says, without being able to release your object, that memory has 'leaked'.</p>
http://stackoverflow.com/questions/626879/setting-an-object-nil-versus-releaserealloc/626915#6269151Answer by unwind for Setting an object nil versus release+reallocunwind2009-03-09T16:09:45Z2009-03-09T16:09:45Z<p>One way to realize the difference might be this: Setting a reference to an object to nil does nothing to the object, it only does something to the reference.</p>
<p>"Releasing the object" is not "nothing", so it doesn't do that. :) In a garbage-collected language it might do that as a side-effect of dropping the reference, but in Objective C it doesn't work that way.</p>
http://stackoverflow.com/questions/626879/setting-an-object-nil-versus-releaserealloc/626930#6269304Answer by mouviciel for Setting an object nil versus release+reallocmouviciel2009-03-09T16:13:18Z2009-03-09T16:33:35Z<p>If you were on Mac OS, not iPhone OS I would say that it depends on whether the garbage collector is activated or not:</p>
<ul>
<li>with GC: use <code>myArr = nil;</code></li>
<li>without GC: use <code>[myArr release];</code></li>
</ul>
<p>Unfortunately, on iPhone, there is no garbage collection, so if you don't want memory leaks, you have to release your object once you no longer need it.</p>
http://stackoverflow.com/questions/626879/setting-an-object-nil-versus-releaserealloc/627104#6271043Answer by Lounges for Setting an object nil versus release+reallocLounges2009-03-09T16:59:37Z2009-03-09T16:59:37Z<p>You could use a property and get almost the syntax you want without the memory leak.</p>
<p>Use this syntax to declare the array </p>
<pre><code>@property (readwrite, retain) NSMutableArray *myArray;
</code></pre>
<p>Then re-initialize it like this:</p>
<pre><code>[self setMyArray:[NSMutableArray array]];
</code></pre>
http://stackoverflow.com/questions/626879/setting-an-object-nil-versus-releaserealloc/644709#6447091Answer by greencat for Setting an object nil versus release+reallocgreencat2009-03-13T21:37:43Z2009-03-13T21:37:43Z<p>If what you want is to reset the contents of an NSMutableArray/NSMutableDictionary, you can also call removeAllObjects and you have a fresh array/dict to work with.</p>
http://stackoverflow.com/questions/626879/setting-an-object-nil-versus-releaserealloc/1831912#18319121Answer by Roger for Setting an object nil versus release+reallocRoger2009-12-02T10:08:24Z2009-12-02T10:08:24Z<p>The first code block is fine. However, the second block does not leave you with an array you can use so it is not sufficient. Half correcting that block, I think you mean:</p>
<pre><code>myArr = nil;
myArr = [[NSMutableArray alloc] init....];
</code></pre>
<p>However, this does not accomplish what you want either because you are not releasing myArr. If you have synthesized a setter for myArr, then you can get the release behavior you want from setting to nil, by using the setter (self.myArr) instead of accessing the pointer directly (myArr). Correcting your second block fully:</p>
<pre><code>self.myArr = nil;
myArr = [[NSMutableArray alloc] init....];
</code></pre>
<p>Now we have equivalent code examples, one using setter with nil to release, the other not. They are the same.</p>
<p>If myArr is a mutable array as in these examples, the most efficient method is to use removeAllObjects, avoiding all the work of releasing memory only to claim it back:</p>
<pre><code>[myArr removeAllObjects];
</code></pre>