标签:elf 对象 符号 sel sage 使用 参数 概念 objc
super是个编译器的指令符号,只是告诉编译器在执行的时候,去调谁的方法.
self refers to the object receiving a message in objective-C programming.
super is a flag that tells the compiler to search for the method implementation in a very different place. It begins in the superclass of the class that defines the method where super appears.
+ 1.直接调用父类中的某个方法
+ 2.super在对象方法中,那么就会调用父类的对象方法
super在类方法中,那么就会调用父类的类方法
标签:elf 对象 符号 sel sage 使用 参数 概念 objc
原文地址:http://www.cnblogs.com/xufengyuan/p/6553176.html