• Objective C类方法load和initialize的区别


    它们的特别之处,在于iOS会在运行期提前并且自动调用这两个方法,而且很多对于类方法的规则(比如继承,类别(Category))都有不同的处理。

    先来看看NSObject Class Reference里对这两个方法说明:总结一句话:+load 是在系统启动的时候会将项目中所有类加载进内存中,这时候会调用+load方法,此时,程序的main函数还没有执行,+initialize是类在第一次被创建的时候调用该方法

    如果是继承的话,会先去执行父类的方法,然后执行子类的方法,然后分的这两个方法

    +(void)initialize

    The runtime sends initialize to each class in a program exactly one time just before the class, or any class that inherits from it, is sent its first message from within the program. (Thus the method may never be invoked if the class is not used.) The runtime sends the initialize message to classes in a thread-safe manner. Superclasses receive this message before their subclasses.

    +(void)load

    The load message is sent to classes and categories that are both dynamically loaded and statically linked, but only if the newly loaded class or category implements a method that can respond.
    The order of initialization is as follows:
    
    All initializers in any framework you link to.
    All +load methods in your image.
    All C++ static initializers and C/C++ __attribute__(constructor) functions in your image.
    All initializers in frameworks that link to you.
    In addition:
    
    A class’s +load method is called after all of its superclasses’ +load methods.
    A category +load method is called after the class’s own +load method.
    In a custom implementation of load you can therefore safely message other unrelated classes from the same image, but any load methods implemented by those classes may not have run yet.
    Apple的文档很清楚地说明了initialize和load的区别在于:load是只要类所在文件被引用就会被调用,而initialize是在类或者其子类的第一个方法被调用前调用。所以如果类没有被引用进项目,就不会有load调用;但即使类文件被引用进来,但是没有使用,那么initialize也不会被调用。
    
    它们的相同点在于:方法只会被调用一次。(其实这是相对runtime来说的,后边会做进一步解释)。
    
    文档也明确阐述了方法调用的顺序:父类(Superclass)的方法优先于子类(Subclass)的方法,类中的方法优先于类别(Category)中的方法。
    
    不过还有很多地方是文章中没有解释详细的。所以再来看一些示例代码来明确其中应该注意的细节。

    +(void)load与+(void)initialize初探

     

    +(void)load

    +(void)initialize
    执行时机

    在程序运行后立即执行

    在类的方法第一次被调时执行
    若自身未定义,是否沿用父类的方法?

    类别中的定义 全都执行,但后于类中的方法 覆盖类中的方法,只执行一个
  • 相关阅读:
    读取lotus85邮箱未读文档
    Lotus notes 通讯录的导入导出
    如果你发现vpuserinfo.nsf数据库损坏,如何修复?该数据
    如何从iNotes获得未读邮件数量
    NTKO文档控件常见报错信息集合
    页面缓存清除的方法
    通过Lotusscript代码从损坏的数据库中抽取数据
    如何将lotus 通讯簿导入到outlook 2003中
    怎样使用Lotus Domino实用程序(Updall, Compact, Fixup) 进行正常和异常维护。
    0301.Lotus Domino与Windows AD帐户同步和SSO
  • 原文地址:https://www.cnblogs.com/mshong1616/p/5111846.html
Copyright © 2020-2023  润新知