記憶について質問があります。以下のコードとログによると0x6868190
、リークはありますか?
コード:
self.point = [NSString stringWithFormat:@"R"];
NSLog(@"********First********%d",[point retainCount]);
NSLog(@"********First********%p",point);
self.point = [NSString stringWithFormat:@"A"];
NSLog(@"********Second********%d",[point retainCount]);
NSLog(@"********Second********%p",point);
ログ:
2012-04-17 20:27:49.838 test_[297:f803] ********First********2
2012-04-17 20:27:49.838 test_[297:f803] ********First********0x6868190
2012-04-17 20:27:49.839 test_[297:f803] ********Second********2
2012-04-17 20:27:49.839 test_[297:f803] ********Second********0x6879500