"stringWithString" vs "alloc ... initWithString ... autorelease" in Cocoa Objective-C. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T07:11:56Z http://stackoverflow.com/feeds/question/432322 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/432322/stringwithstring-vs-alloc-initwithstring-autorelease-in-cocoa-objecti 3 "stringWithString" vs "alloc ... initWithString ... autorelease" in Cocoa Objective-C. dreeves 2009-01-11T03:49:19Z 2009-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#432330 8 Answer by Martin Cote for "stringWithString" vs "alloc ... initWithString ... autorelease" in Cocoa Objective-C. Martin Cote 2009-01-11T03:57:23Z 2009-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#432338 5 Answer by rpetrich for "stringWithString" vs "alloc ... initWithString ... autorelease" in Cocoa Objective-C. rpetrich 2009-01-11T04:07:50Z 2009-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#432727 5 Answer by Mike Abdullah for "stringWithString" vs "alloc ... initWithString ... autorelease" in Cocoa Objective-C. Mike Abdullah 2009-01-11T10:42:41Z 2009-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#433429 4 Answer by Steven Degutis for "stringWithString" vs "alloc ... initWithString ... autorelease" in Cocoa Objective-C. Steven Degutis 2009-01-11T18:59:33Z 2009-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>