美文网首页iOS基础学习
Objective-C基础学习之new方法实现原理

Objective-C基础学习之new方法实现原理

作者: WenJim | 来源:发表于2017-09-23 23:09 被阅读26次

1.new方法实现原理

  • 完整的创建一个可用的对象:Person *p=[Person new];

  • new方法的内部会分别调用两个方法来完成3件事情:

    • (1)使用alloc方法来分配存储空间(返回分配的对象);
    • (2)使用init方法来对对象进行初始化。
    • (3)返回对象的首地址
This method is a combination of alloc and init. Like alloc, it initializes the isa instance variable of the new object so it points to the class data structure. It then invokes the init method to complete the initialization process.
  • 可以把new方法拆开如下:

    • (1)调用类方法+alloc分配存储空间,返回未经初始化的对象Person *p1=[person alloc];
    • (2)调用对象方法-init进行初始化,返回对象本身 Person *p2=[p1 init];
    • (3)以上两个过程整合为一句:Person *p=[[Person alloc] init];
  • 说明:

    • alloc 与 init合起来称为构造方法,表示构造一个对象
    • alloc 方法为对象分配存储空间,并将所分配这一块区域全部清0.
The isa instance variable of the new instance is initialized to a data structure that describes the class; memory for all other instance variables is set to 0.
  • init方法是初始化方法(构造方法),用来对象成员变量进行初始化,默认实现是一个空方法。
An object isn’t ready to be used until it has been initialized. The init method defined in the NSObject class does no initialization; it simply returns self.
  • 所以下面两句的作用是等价的
Person *p1 = [Person new];
Person *p = [[Person alloc] init];
  • iOS 程序通常使用[[类名 alloc] init] 的方式创建对象,因为这个可以与其他initWithXX:...的初始化方法,统一来。代码更加统一

相关文章

  • Objective-C基础学习之new方法实现原理

    1.new方法实现原理 完整的创建一个可用的对象:Person *p=[Person new]; new方法的内部...

  • Objective-C的+load方法调用原理分析

    Objective-C之Category的底层实现原理Objective-C的+initialize方法调用原理分...

  • Objective-C的+initialize方法调用原理分析

    Objective-C的+load方法调用原理分析Objective-C之Category的底层实现原理 Obje...

  • iOS 自我提升总纲

    技术提升的关键方法是实践。 (1)Objective-C 基础知识学习。(2)Objective-C 语言底层原理...

  • new方法实现原理

    本小节知识: 【掌握】new方法实现原理 1.new方法实现原理 完整的创建一个可用的对象:Person *p=[...

  • new方法实现原理

    //问题1:创建对象时,alloc做了什么事情?init做了什么事情?答:alloc做了三件事:1.开辟内存空间2...

  • new方法实现原理

    new做了三件事情1.开辟存储空间 + alloc 方法2.初始化所有的属性(成员变量) - init 方法3....

  • OC 构造方法

    1. new方法实现原理 自动调用构造方法,完整的创建一个可用的对象:Person *p=[Person new]...

  • 登登

    基础知识点与高频考题 JavaScript基础 防抖/节流 new 的实现原理,模拟实现一下 this指向 如果用...

  • 手动实现new方法,call

    面试中经常会被问到,new方法实现的原理,你能不能实现一个,在这个框架泛滥的年代,我还是决定沉下心来,自己在把基础...

网友评论

    本文标题:Objective-C基础学习之new方法实现原理

    本文链接:https://www.haomeiwen.com/subject/xruhextx.html