What is the difference between these two lines?
NSString * string = @"My String";
NSString * string = [[[NSString alloc] initWithString:@"MyString"] autorelease]
|
What is the difference between these two lines?
|
|||||||
|
|
@"My String" is a literal string compiled into the binary. When loaded, it has a place in memory. The first line declares a variable that points to that point in memory. From the string programming guide:
The second line allocates a string by taking that literal string. Note that both @"My String" literal strings are the same. To prove this:
Outputs the same memory address:
What's telling is not only are the first two string the same memory address, but if you don't change the code, it's the same memory address every time you run it. It's the same binary offset in memory. But, not only is the copy different but it's different every time you run it since it's allocated on the heap. The autorelease has no affect according to the doc ref above. You can release them but they are never deallocated. So, they are equal not because both are autoreleased string but that they're both constants and the release is ignored. |
|||||||||||||
|
|
One is a literal string, which persists for the life of the executing app. The other may be a dynamic object that only persists until autoreleased. (It may also be a literal string, if the system decides to optimize it that way -- there are no guarantees it won't.) |
|||
|
|
|
There is no difference between them. A string initiated how you showed in the first example is an autoreleased string. |
|||
|
|
Just remember this basic thing:-
This is a pointer to an object, "not an object"! Therefore, the statement:
Similarly, the statment
assigns the address of somethingElse to pointer Therefore, the statement: |
|||
|
|
|
bryanmac is 100% correct in his answer. I just added an explicit example using GHUnit.
|