Question

NSString *str = [[[[NSString alloc]init]autorelease]autorelease];
str = @"hii";
NSLog(@"%@",str);      

Can any one help me to tell about this code. Autoreleasing the object twice what will happened. When i run the code i didn't get any zombie. why it so.

Was it helpful?

Solution

The object gets released twice when the autorelease pool is destroyed, which is probably going to be at the end of the run loop iteration. Why it doesn't crash is, that NSString returns singletons for some instances, for example the empty string you create or string literals (you should NOT depend on it, thats just what currently happens!), these objects won't be deallocated and this is why you don't get a zombie.

OTHER TIPS

First of there is no reason to call autorelease twice.

Once an object is marked as autorelease, calling autorelease on it again will just be ignored. See https://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/nsautoreleasepool_Class/Reference/Reference.html

But in the exmaple you posted you are creating an empty string:

NSString *str = [[[[NSString alloc]init]autorelease]autorelease];

Then you assign an other string to it:

str = @"hii";

This means that the first string you allocated is just going to be leak, you did autorelease it so it will be cleaned up at the end. But there is not reason to allocated the string in fist place.

You could just do:

NSString *str =@"hii";
NSLog(@"%@",str);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top