Object allocate and init in Objective C - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T05:18:19Z http://stackoverflow.com/feeds/question/156243 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/156243/object-allocate-and-init-in-objective-c 11 Object allocate and init in Objective C Ronnie Liew 2008-10-01T04:31:43Z 2009-08-04T00:24:53Z <p>What is the difference between the following 2 ways to allocate and init an object?</p> <pre><code>AController *tempAController = [[AController alloc] init]; self.aController = tempAController; [tempAController release]; </code></pre> <p>and</p> <pre><code>self.aController= [[AController alloc] init]; </code></pre> <p>Most of the apple example use the first method. Why would you allocate, init and object and then release immediately?</p> http://stackoverflow.com/questions/156243/object-allocate-and-init-in-objective-c/156251#156251 -9 Answer by Nowhere man for Object allocate and init in Objective C Nowhere man 2008-10-01T04:35:10Z 2008-10-01T04:35:10Z <p>I'm just a C++ programmer, but I'd bet the first may use heap space whereas the second should only use stack...</p> http://stackoverflow.com/questions/156243/object-allocate-and-init-in-objective-c/156289#156289 15 Answer by benzado for Object allocate and init in Objective C benzado 2008-10-01T04:54:29Z 2008-10-22T15:16:51Z <p>Every object has a reference count. When it goes to 0, the object is deallocated.</p> <p>Assuming the property was declared as <code>@property (retain)</code>:</p> <p>Your first example, line by line:</p> <ol> <li>The object is created by <code>alloc</code>, it has a reference count of 1.</li> <li>The object is handed over to <code>self</code>'s <code>setAController:</code> method, which sends it a <code>retain</code> message (because the method doesn't know where the object is coming from), incrementing its reference count to 2.</li> <li>The calling code no longer needs the object itself, so it calls <code>release</code>, decrementing the reference count to 1.</li> </ol> <p>Your second example basically does steps 1 and 2 but not 3, so at the end the object's reference count is 2.</p> <p>The rule is that if you create an object, you are responsible for releasing it when you're done with it. In your example, the code is done with tempAController after it sets the property. It is the setter method's responsibility to call <code>retain</code> if it needs that object to stick around.</p> <p>It's important to remember that <code>self.property = foo;</code> in Objective-C is really just shorthand for <code>[self setProperty:foo];</code> and that the <code>setProperty:</code> method is going to be retaining or copying objects as needed.</p> <p>If the property was declared <code>@property (copy)</code>, then the object would have been copied instead of retained. In the first example, the original object would be released right away; in the second example, the original object's reference count would be 1 even though it should be 0. So you would still want to write your code the same way.</p> <p>If the property was declared <code>@property (assign)</code>, then <code>self</code> isn't claiming ownership of the object, and somebody else needs to retain it. In this case, the first example would be incorrect. These sorts of properties are rare, usually only used for object delegates.</p> http://stackoverflow.com/questions/156243/object-allocate-and-init-in-objective-c/156516#156516 1 Answer by Kendall Helmstetter Gelner for Object allocate and init in Objective C Kendall Helmstetter Gelner 2008-10-01T07:03:56Z 2008-10-01T07:03:56Z <p>Note also that your desire to cut the code down to one line is why many people use Autorelease:</p> <pre><code>self.aController = [[[AController alloc] init] autorelease]; </code></pre> <p>Though in theory on the iPhone autorelease is somehow more expensive (never heard a clear explanation why) and thus you may want to explicitly release right after you assign the object elsewhere.</p> http://stackoverflow.com/questions/156243/object-allocate-and-init-in-objective-c/159069#159069 1 Answer by Ashley Clark for Object allocate and init in Objective C Ashley Clark 2008-10-01T18:38:04Z 2008-10-01T18:38:04Z <p>One other thing to note is that your example depends on the @property definition of aController also.</p> <p>If it were defined as <code>@property (readwrite, retain) id aController;</code> then your example works, while if it is defined as <code>@property (readwrite, assign) id aController;</code> then the extra call to release would cause your object to be deallocated.</p> http://stackoverflow.com/questions/156243/object-allocate-and-init-in-objective-c/167783#167783 4 Answer by mmalc for Object allocate and init in Objective C mmalc 2008-10-03T16:37:03Z 2008-10-03T16:37:03Z <p>As others have noted, the two code snippets you show are not equivalent (for memory management reasons). As to why the former is chosen over the latter:</p> <p>The correct formulation of the latter would be</p> <pre><code>self.aController= [[[AController alloc] init] autorelease]; </code></pre> <p>Compared with the former, this adds additional overhead through use of the autorelease pool, and in some circumstances will lead to the lifetime of the object being unnecessarily extended (until the autorelease pool is released) which will increase your application's memory footprint.</p> <p>The other "possible" implementation (depending on where the example is from) is simply:</p> <pre><code>aController = [[AController alloc] init]; </code></pre> <p>However, setting an instance variable directly is strongly discouraged anywhere other than in an init or dealloc method. Elsewhere you should always use accessor methods.</p> <p>This brings us then to the implementation shown in sample code:</p> <pre><code>AController *tempAController = [[AController alloc] init]; self.aController = tempAController; [tempAController release]; </code></pre> <p>This follows best practice since:</p> <ul> <li>It avoids autorelease;</li> <li>It makes the memory management semantics immediately clear;</li> <li>It uses an accessor method to set the instance variable.</li> </ul> http://stackoverflow.com/questions/156243/object-allocate-and-init-in-objective-c/1225254#1225254 0 Answer by Mk12 for Object allocate and init in Objective C Mk12 2009-08-04T00:24:53Z 2009-08-04T00:24:53Z <p>You could also do</p> <pre><code>@property (nonatomic, retain)AController *aController; ... self.aController= [[AController alloc] init]; [aController release]; </code></pre> <p>with a retaining property, and it would function the same way, but its better to use the other way (for retaining properties) because it's less confusing, that code makes it look like you assign aController and then it gets deleted from memory, when actually it doesn't because setAController retains it.</p>