• Why should a selfimplemented getter retain and autorelease the returned object


    -(id)getMyInstance
        {return myInstanceVar ;}

    or

    -(id)getMyInstance
    {return[[myInstanceVar retain] autorelease];}

    What's the difference ? The second one allows the caller to get an instance variable of a container object, dispose of the container and continue to play with the instance variable until the next release of the current autoreleased pool, without being hurt by the release of the instance variable indirectly generated by the release of its container:

    aLocalVar =[aContainer getAnInstanceVar];[aContainer release];
    doSomething(aLocalVar);

    If the "get" is implemented in the first form, you should write:

    aLocalVar =[[aContainer getAnInstanceVar] retain];[aContainer release];
    doSomething(aLocalVar);[aLovalVar release];

    The first form is a little bit more efficent in term of code execution speed. However, if you are writing frameworks to be used by others, maybe the second version should be recommanded: it makes life a little bit easier to people using your framework: they don't have to think too much about what they are doing…;) If you choose the first style version, state it clearly in your documentation… Whatever way you will be choosing, remember that changing from version 1 to version 2 is save for client code, when going back from version 2 to version 1 will break existing client code…

    Compare this code

    return[[title retain] release];// releases immediately

    with this

    return[[title retain] autorelease];// releases at end of current run loop (or if autorelease pool is drained earlier)

    The second one guarantees that a client will have a non-dealloced object to work with.

    This can be useful in a situation like this (client code):

    NSString*thing =[obj title];[obj setTitle:nil];// here you could hit retainCount 0!NSLog(@"Length %d",[thing length]);// here thing might be dealloced already!

    The retain (and use of autorelease instead of release) in your title method prevents this code from blowing up. The autoreleased object will not have its release method called until AFTER the current call stack is done executing (end of the current run loop). This gives all client code in the call stack a chance to use this object without worrying about it getting dealloc'ed.

    The Important Thing To Remember: This ain't Java, Ruby or PHP. Just because you have a reference to an object in yer [sic] variable does NOT ensure that you won't get it dealloc'ed from under you. You have to retain it, but then you'd have to remember to release it. Autorelease lets you avoid this. You should always use autorelease unless you're dealing with properties or loops with many iterations (and probably not even then unless a problem occurs).

     
  • 相关阅读:
    移动端屏幕旋转的事件和样式方案。
    active:移动端触摸按钮的效果。
    移动端字体单位该使用px还是rem?
    Cordova/Ionic Android 开发环境搭建
    JavaScript 深拷贝(deep copy)和浅拷贝(shallow copy)
    你不知道的JS之 this 和对象原型(一)this 是什么
    你不知道的JS之作用域和闭包 附录
    你不知道的JS之作用域和闭包(五)作用域闭包
    你不知道的JS之作用域和闭包(四)(声明)提升
    你不知道的JS之作用域和闭包(三)函数 vs. 块级作用域
  • 原文地址:https://www.cnblogs.com/zhangjie/p/3131367.html
Copyright © 2020-2023  润新知