0

我知道当我们使用自定义线程来创建对象并使用它们时。我在 iOS 应用程序中尝试了以下代码,它没有抛出任何错误。为什么?

-(void)Sample{

            NSLog(@"Sample");
            NSString *temp= @"asdfasdf";

            NSArray *tempAray = [NSArray arrayWithObject:temp];


            NSLog(@"Print it %@%s",temp,__FUNCTION__);

}

-(void)viewDidLoad{

            [super viewDidLoad];
            [NSThread detachNewThreadSelector:@selector(Sample) toTarget:self withObject:@"NSSstint"];
            // Do any additional setup after loading the view, typically from a nib.
}

编辑:

我理解如果我将自动释放消息传递给对象,我将泄漏内存。我对示例方法调用使用了以下方法实现:即使现在我也没有收到以下消息:

*** __NSAutoreleaseNoPool(): object 0x167ba4 autoreleased without a pool in place - just leaking ***


 -(void)Sample{

    NSLog(@"Sample");
    NSString *temp=[[NSString alloc] initWithFormat:@"Sample"];

    NSArray *tempAray = [NSArray arrayWithObject:temp];
    [tempAray retain];
    [tempAray autorelease];
    [temp autorelease];


    NSLog(@"Print it %@%s",temp,__FUNCTION__);

}
4

1 回答 1

1

它不会出错,因为它只为您提供日志消息。如果您在新线程中自动释放对象而不创建自动释放池,您将收到大量消息,例如

*** __NSAutoreleaseNoPool(): object 0x167ba4 autoreleased without a pool in place - just leaking ***

但这抛出 NSExcpetion 不同。此外,您可能从中获得的“它运行良好”的印象是错误的:您会泄漏内存,并且您的应用程序偶尔会因内存不足而崩溃。

于 2012-08-06T12:12:45.110 回答