微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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被释放时,它将自动完成.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐