ObjC Runtime简析 -- super和superclass

栏目: Objective-C · 发布时间: 5年前

内容简介:这一个经典的面试题,Student是Person的一个子类,在子类Student的init方法中调用4个方法并打印结果。objc_msgSend(self, sel_registerName("class")) objc_msgSend(self, sel_registerName("superclass")) objc_msgSendSuper({self, class_getSuperclass(objc_getClass("Student"))}, sel_registerName("class"))

这一个经典的面试题,Student是Person的一个子类,在子类Student的init方法中调用4个方法并打印结果。

ObjC Runtime简析 -- super和superclass

objc_msgSend(self, sel_registerName("class")) objc_msgSend(self, sel_registerName("superclass")) objc_msgSendSuper({self, class_getSuperclass(objc_getClass("Student"))}, sel_registerName("class")) objc_msgSendSuper({(id)self, (id)class_getSuperclass(objc_getClass("Student"))}, sel_registerName("superclass"))

将这个 Student.m 转换为cpp文件查看其底层的方法调用的到如下调用:

[self class]: objc_msgSend(self, sel_registerName("class"))
[self superclass]: objc_msgSend(self, sel_registerName("superclass"))
[super class]: objc_msgSendSuper({self, class_getSuperclass(objc_getClass("Student"))}, sel_registerName("class"))
[super superclass]: objc_msgSendSuper({self, class_getSuperclass(objc_getClass("Student"))}, sel_registerName("superclass"))
复制代码

我们看到当对self进行消息发送的时候底层是调用了runtime的 objc_msgSend 方法,而对super进行消息发送的时候底层是调用了 objc_getSuperClass

objc_msgSend 方法我们都熟悉了,将会从self开始查找 class 方法和 superclass 方法的实现,调用打印Student和Person。

而对super发送消息,底层将会调用 objc_msgSendSuper 函数,这个函数有两个参数,第一个是一个结构,第二个是方法选择器。结构体有两个成员:

ObjC Runtime简析 -- super和superclass

第一个是消息接受者,第二个参数我们通过注释可以看出,表示函数从哪里开始查找法方法。而这里传递的是 class_getSuperclass(objc_getClass("Student")) 表示Student的父类,也就是Person类开始查找方法。查找的方法是 classsuperclass ,而这两个方法存在于 NSObject 中,查找到了之后依然使用 objc_msgSendSuper 第一个参数结构体的第一个成员接收消息。消息接受者是 self ,所以依然调用 selfclass 方法和 superclass

所以最终 [super class][super superclass] 打印的依然是Student和Person。

总结

对super发消息底层调用的是 objc_msgSendSuper 方法,它有两个参数,第一个是一个结构,第二个是方法选择器。本质上所做的操作是从当前类的父类开始查找方法,而消息的接受者依然是self,也就是当前类,所以最后还是 [self xxxx]


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Python源码剖析

Python源码剖析

陈儒 / 电子工业出版社 / 2008-6 / 69.80元

作为主流的动态语言,Python不仅简单易学、移植性好,而且拥有强大丰富的库的支持。此外,Python强大的可扩展性,让开发人员既可以非常容易地利用C/C++编写Python的扩展模块,还能将Python嵌入到C/C++程序中,为自己的系统添加动态扩展和动态编程的能力。. 为了更好地利用Python语言,无论是使用Python语言本身,还是将Python与C/C++交互使用,深刻理解Pyth......一起来看看 《Python源码剖析》 这本书的介绍吧!

MD5 加密
MD5 加密

MD5 加密工具

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具