objective-c – 在自动引用计数(ARC)下,我在哪里放置我的free()语句?

在可可中,ARC让你不必担心保留,释放,自动释放等.它还禁止调用[super dealloc].允许使用A – (void)dealloc方法,但我不确定是否/何时调用它.

我知道这对于对象等是多么好,但是我在哪里放置与我在 – (id)init中执行的malloc()匹配的free()?

例:

@implementation SomeObject

- (id) initWithSize: (Vertex3Di) theSize
{
    self = [super init];
    if (self)
    {
        size = theSize;
        filled = malloc(size.x * size.y * size.z);
        if (filled == nil)
        {
            //* Todo: handle error
            self = nil;
        }
    }

    return self;
}


- (void) dealloc         // does this ever get called?  If so,at the normal time,like I expect?
{
    if (filled)
        free(filled);    // is this the right way to do this?
    // [super dealloc];  // This is certainly not allowed in ARC!
}

解决方法

你是对的,你必须实现dealloc并在其中自由调用.当对象在ARC之前被释放时,将调用dealloc.另外,你不能叫[super dealloc];因为这将自动完成.

最后,请注意您可以使用NSData为已填充的内存分配内存:

self.filledData = [NSMutableData dataWithLength:size.x * size.y * size.z];
self.filled = [self.filledData mutableBytes];

执行此操作时,您不必显式释放内存,因为当对象和因此fillData被释放时,它将自动完成.

相关文章

我正在用TitaniumDeveloper编写一个应用程序,它允许我使用Ja...
我的问题是当我尝试从UIWebView中调用我的AngularJS应用程序...
我想获取在我的Mac上运行的所有前台应用程序的应用程序图标....
我是一名PHP开发人员,我使用MVC模式和面向对象的代码.我真的...
OSX中的SetTimer在Windows中是否有任何等效功能?我正在使用...
我不确定引擎盖下到底发生了什么,但这是我的设置,示例代码和...