Please consider the code

NSMutableString *str=[[NSMutableString alloc] initWithString:@"hello"];
NSLog(@"reference count is %i",[str retainCount]);
[str release];
NSLog(@"reference count is %i",[str retainCount]);
I am getting "refernce count is 1" for both of these NSLog statements...even after release i am getting 1....However if I write str=nil below [str release] i get 0(which is understood)...could anyone please advise...

thanks...

link|improve this question

62% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Don't use retainCount, it doesn't do what you expect in most cases.

Your second NSLog is accessing deallocated memory as an object. In this particular case, that deallocated memory still contains enough of the old data from the NSString that was just freed for the program to not crash when the retainCount method is called on it. Had you run this with NSZombieEnabled you would have gotten an error message about sending a message to a deallocated instance.

The reason it returns 0 when called for nil is that methods returning integers will always return 0 when called on a nil object.

link|improve this answer
its much convincing...thanks...also program got crashed when i ran with programming tool with NSZombieEnabled enabled... – devaditya Mar 5 '11 at 16:36
to put it succinctly; messaging a deallocated object yields undefined behavior. End of story. – bbum Mar 5 '11 at 18:54
feedback

Do not depend on retainCount. And do not care about this. Lots of things may happen under the hood. You only need to ensure that you have released all the things that you owned. If you are trying to be sure that you are not leaking any memory, then use Instrument, not retainCount in NSLog.

link|improve this answer
this answer was expected...well as it is written that after [obj release] reference count gets decremented...so it was just a practical implementation...not to check any LEAK...anyhow thanks... – devaditya Mar 5 '11 at 16:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.