"stringWithString" vs "alloc ... initWithString ... autorelease" in Cocoa Objective-C. - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T07:11:56Zhttp://stackoverflow.com/feeds/question/432322http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/432322/stringwithstring-vs-alloc-initwithstring-autorelease-in-cocoa-objecti3"stringWithString" vs "alloc ... initWithString ... autorelease" in Cocoa Objective-C.dreeves2009-01-11T03:49:19Z2009-01-11T18:59:33Z
<p>I've seen it claimed that the following are "pretty much equivalent":</p>
<pre><code>foo([NSString stringWithString:@"blah"]) # version 1
foo([[[NSString alloc] initWithString:@"blah"] autorelease]) # version 2
</code></pre>
<p>Are the above in fact literally equivalent or are there any subtle differences?
What are reasons to prefer one or the other?</p>
http://stackoverflow.com/questions/432322/stringwithstring-vs-alloc-initwithstring-autorelease-in-cocoa-objecti/432330#4323308Answer by Martin Cote for "stringWithString" vs "alloc ... initWithString ... autorelease" in Cocoa Objective-C.Martin Cote2009-01-11T03:57:23Z2009-01-11T03:57:23Z<p>They are equivalent, but I prefer "stringWithString" since it is more concise.</p>
http://stackoverflow.com/questions/432322/stringwithstring-vs-alloc-initwithstring-autorelease-in-cocoa-objecti/432338#4323385Answer by rpetrich for "stringWithString" vs "alloc ... initWithString ... autorelease" in Cocoa Objective-C.rpetrich2009-01-11T04:07:50Z2009-01-11T04:07:50Z<p>In most cases, the only difference is an extra call to <code>objc_msgSend</code>.</p>
<p>Decompiling NSString reveals that instead of sending <code>+alloc</code> it sends <code>+allocWithZone:NSDefaultMallocZone()</code></p>
http://stackoverflow.com/questions/432322/stringwithstring-vs-alloc-initwithstring-autorelease-in-cocoa-objecti/432727#4327275Answer by Mike Abdullah for "stringWithString" vs "alloc ... initWithString ... autorelease" in Cocoa Objective-C.Mike Abdullah2009-01-11T10:42:41Z2009-01-11T10:42:41Z<p>The two are functionally equivalent, but as rpetrich observes, may operate ever-so-slightly differently internally. This shouldn't matter to you, use whichever seems more convenient to you. Furthermore, while there is a minute performance difference, it is highly unlikely to matter to your application in practice.</p>
<p>But all this misses a crucial point: both are pointless. By writing @"foo" you already have a fully functional NSString object. There is no need to mess around with extra methods to duplicate the string; it is quicker and simpler to just do:</p>
<pre><code>foo(@"blah")
</code></pre>
http://stackoverflow.com/questions/432322/stringwithstring-vs-alloc-initwithstring-autorelease-in-cocoa-objecti/433429#4334294Answer by Steven Degutis for "stringWithString" vs "alloc ... initWithString ... autorelease" in Cocoa Objective-C.Steven Degutis2009-01-11T18:59:33Z2009-01-11T18:59:33Z<p>Methods such as +stringWithString: or +array are simply convenience methods which always return autoreleased objects. These are mostly in place to reduce the amount of code written for classes that are created often, such as strings, arrays, dictionaries, numbers, etc. They strictly follow the basic memory management rules from which the one I mentioned above are derived.</p>