标签:
要点:
self和super底层实现原理:
struct objc_super {
id receiver;
Class superClass;
};
当编译器遇到 [super setName:] 时,开始做这几个事:
1)构 建 objc_super 的结构体,此时这个结构体的第一个成员变量 receiver 就是 子类,和 self 相同。而第二个成员变量 superClass 就是指父类
调用 objc_msgSendSuper 的方法,将这个结构体和 setName 的 sel 传递过去。
2)函数里面在做的事情类似这样:从 objc_super 结构体指向的 superClass 的方法列表开始找 setName 的 selector,找到后再以 objc_super->receiver 去调用这个 selector
《简单介绍一下几个关键词》
class:获取当前方法调用者的类
supperclass:获取当前方法调用者的父类
supper:只是一个编译指示器,就是给编译器看的,不是一个指针,(指针是可以直接打印的),本质:只要编译器看到supper这个标志,就让当前对象调用父类方法,本质还是当前对象在调用
[self class],[super class],[self superclass],[super superclass];
用代码分别介绍
首先创建工程
ViewController,
Techer,
Student:继承与Techer
上代码:
#import "ViewController.h"
#import "Student.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
Student*stu=[[Student alloc]init];
[stu texta];//在Techer类中定义的texta方法
}
在Techer类中
#import <Foundation/Foundation.h>
@interface Techer : NSObject
-(void)texta;
@end
#import "Student.h"
@implementation Student
-(void)texta
{
NSLog(@"%@" @"%@" @"%@" @"%@",[self class],[super class],[self superclass],[super superclass]);
}
@end
输出结果为:
Student Student Techer Techer
标签:
原文地址:http://www.cnblogs.com/wpw19920808/p/5752772.html