Why do I have to call super -dealloc last, and not first? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T23:59:48Zhttp://stackoverflow.com/feeds/question/909856http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/909856/why-do-i-have-to-call-super-dealloc-last-and-not-first2Why do I have to call super -dealloc last, and not first?Thanks2009-05-26T09:44:50Z2009-08-02T18:22:15Z
<p>correct example:</p>
<pre><code>- (void)dealloc {
[viewController release];
[window release];
[super dealloc];
}
</code></pre>
<p>wrong example:</p>
<pre><code>- (void)dealloc {
[super dealloc];
[viewController release];
[window release];
}
</code></pre>
<p>Althoug in alsmost all other cases when overriding a method I would first call the super's method implementation, in this case apple always calls [super dealloc] in the end. Why?</p>
http://stackoverflow.com/questions/909856/why-do-i-have-to-call-super-dealloc-last-and-not-first/909874#9098745Answer by n3rd for Why do I have to call super -dealloc last, and not first?n3rd2009-05-26T09:51:39Z2009-05-26T09:57:54Z<p>I don't know anything about programming for the iPhone, but I would assume that it is for the same reason that destructors need to be called in reverse order. You want to make sure that all your 'garbage' is cleaned up before calling your superclass. If you do it the other way around things can get messy. For instance, if your destructor needs to access memory that the super destructor has already freed:</p>
<pre><code>class X {
private Map foo;
function __construct() {
foo = new Map();
}
function __destruct() {
foo.free;
}
}
class Y extends X {
function __construct() {
super.__construct();
map.put("foo", 42);
}
function __destruct() {
super.__destruct();
if (map.containsKey("foo")) { // boooooooooom!
doSomething();
}
}
}
</code></pre>
<p>You may not encounter this problem in <em>your</em> code, because "you know what you're doing", but it is a safer and overall better practice not to do such things.</p>
http://stackoverflow.com/questions/909856/why-do-i-have-to-call-super-dealloc-last-and-not-first/909925#9099254Answer by cocoafan for Why do I have to call super -dealloc last, and not first?cocoafan2009-05-26T10:10:06Z2009-05-26T10:41:03Z<p>Its just a guideline. You can call other instructions after <code>[super dealloc]</code>. however you can not access variables of the superclass anymore because they are released when you call <code>[super dealloc]</code>. Its always safe to call the superclass in the last line. </p>
<p>Also KVO and depended (triggered) keys can affect side effects if they are depended of already release member varibles. </p>
http://stackoverflow.com/questions/909856/why-do-i-have-to-call-super-dealloc-last-and-not-first/911185#9111852Answer by Terry Wilcox for Why do I have to call super -dealloc last, and not first?Terry Wilcox2009-05-26T15:07:12Z2009-05-26T15:07:12Z<p>[super dealloc] is freeing up the memory used by your object, including the pointers to viewController and window. Referring to variables after you've freed them is hazardous at best. </p>
<p>See <a href="http://stackoverflow.com/questions/562872/getting-a-segfault-excbadaccess-when-deallocating-variables/562885#562885">this answer</a>.</p>
http://stackoverflow.com/questions/909856/why-do-i-have-to-call-super-dealloc-last-and-not-first/1219469#12194690Answer by Kare Morstol for Why do I have to call super -dealloc last, and not first?Kare Morstol2009-08-02T18:22:15Z2009-08-02T18:22:15Z<p>You practically almost have <code>[super dealloc]</code> at the end because it frees up the variables of the superclass and they can no longer be accessed.</p>
<p>One exception is if you have a subclass of UITableViewController that is using another class as its table view delegate. In that case you have to release the table view delegate after <code>[super dealloc]</code> because the table view is referencing the table view delegate and the table view has to be released first.</p>