OC中的initialize和load

Apple的文档很清楚地说明了initialize和load的区别在于:load是只要类所在文件被引用就会被调用,而initialize是在类或者其子类的第一个方法被调用前调用。所以如果类没有被引用进项目,就不会有load调用;但即使类文件被引用进来,但是没有使用,那么initialize也不会被调用。

它们的相同点在于:方法只会被调用一次。(其实这是相对runtime来说的,后边会做进一步解释)。

文档也明确阐述了方法调用的顺序:父类(Superclass)的方法优先于子类(Subclass)的方法,类中的方法优先于类别(Category)中的方法。


下面是官方给出的说明

+(void)initialize 

The runtime sendsinitializeto 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 

Theloadmessage 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+loadmethods 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+loadmethod is called after all of its superclasses’+loadmethods.

A category+loadmethod is called after the class’s own+loadmethod.

In a custom implementation ofloadyou can therefore safely message other unrelated classes from the same image, but anyloadmethods implemented by those classes may not have run yet.

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • Apple的文档很清楚地说明了initialize和load的区别在于:load是只要类所在文件被引用就会被调用,...
    风chat阅读 241评论 0 0
  • 执法只能照程序来,一步不落地来完成。
    对酒几何阅读 153评论 0 0
  • 名称:闪聊版本:v1.0.0(发布时间:2016.10.26)设备系统:ios 10.0.1功能简介:花式聊天神器...
    西瓜_713阅读 1,161评论 0 0
  • 周冰洁阅读 335评论 6 5
  • 碧波池,是城东闹市区的一个洗澡堂,碧波池周围分布着商业街,居民区,还有一所不太知名的大学。比起那些厂矿专属的澡堂,...
    莲蕊添香阅读 290评论 1 2