クラス「TestA」が1つあり、そのオブジェクトをメイン関数のNSMutable辞書に入れます。そして、スレッドを持つ "ThreadClass" という名前の 2 番目のクラス。このスレッドでは、辞書からオブジェクトを取得して使用しました。このプログラムを実行すると、このスレッドでメモリ リークが表示されます。しかし、新しい、割り当て、コピー、または保持を使用しなかったため、メモリがリークする理由がわかりません。プログラムの完全なコードをメインクラスに添付しました。メモリ管理について簡単なヘルプが必要です。
また、データ メンバーとして NSString を持つクラスがあるかどうかという質問もあります。このオブジェクトを NSMutabledictionary に配置した場合、このメモリ管理をどのように処理するか。ありがとう
#import <Cocoa/Cocoa.h>
@interface TestA : NSObject {
@public
NSString *strTemp1;
}
@end
#import "TestA.h"
/////////////////////////////////////////////
//Implementation class
@implementation TestA
-(id)init
{
self = [super init];
if (self != nil)
{
//strTemp1 = [[NSString alloc] init];
//printf("\n Temp 1 %d \n", [strTemp1 retainCount]);
}
return self;
}
@end
//Thread Class
#import <Cocoa/Cocoa.h>
#import "TestA.h"
@interface ThreadClass : NSObject {
}
@end
#import "ThreadClass.h"
extern NSMutableDictionary *clData;
@implementation ThreadClass
-(void)Initialize
{
[NSThread detachNewThreadSelector:@selector(AnimateThread:) toTarget:self withObject:nil];
printf("\n<<<<<<<<<<<<<<< Start Animator Thread Called >>>>>>>>>>>>>>>>>>>>>\n");
}
//==========================================================================
- (void) AnimateThread:(id) inObject
{
NSAutoreleasePool *Pool = [[NSAutoreleasePool alloc] init];
NSDate *timeToSleep = [NSDate dateWithTimeIntervalSinceNow:(NSTimeInterval)5];
while (1)
{
//NSAutoreleasePool *threadPool = [[NSAutoreleasePool alloc] init];
printf("\n Collection Size:%d \n", [clData count]);
TestA *obj1 = [clData objectForKey:@"abc"];
printf("\nThread Memory Counter:%d \n", [obj1 retainCount]);
printf("\nThread Memory Counter:%s \n", [obj1->strTemp1 UTF8String]);
//Sleep Thread for 5 Seconds
[timeToSleep release];
timeToSleep = [NSDate dateWithTimeIntervalSinceNow:(NSTimeInterval)5];
[NSThread sleepUntilDate:(NSDate *)timeToSleep];
//[timeToSleep release];
//[threadPool release];
}
[Pool release];
}
@end
//////////////////////////
Main Class
#import <Cocoa/Cocoa.h>
#import "TestA.h"
#import "ThreadClass.h"
NSMutableDictionary *clData = nil;
int main(int argc, char *argv[])
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
clData = [[NSMutableDictionary alloc] init];
//Creating Thread Class
ThreadClass *obj = [ThreadClass new];
[obj Initialize];
[obj release];
TestA *obj1 = [[TestA alloc] init];
NSString *strKey =[NSString new];
strKey = @"abc";
printf("\n Memory Counter:%d \n", [obj1 retainCount]);
printf("\n Memory Counter:%d \n", [obj1->strTemp1 retainCount]);
NSString *strTemp = @"Test Program";
obj1->strTemp1 = [NSString stringWithFormat:@"%s", [strTemp UTF8String]];
[obj1->strTemp1 retain];
printf("\n Memory Counter:%s \n", [obj1->strTemp1 UTF8String]);
[clData setObject:obj1 forKey:strKey];
printf("\nAfter Memory Counter:%d \n", [obj1 retainCount]);
printf("\nAfter Memory Counter:%d \n", [obj1->strTemp1 retainCount]);
[strKey release];
[obj1 release];
[pool release];
return NSApplicationMain(argc, (const char **) argv);
}