A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© a_dream 中级黑马   /  2014-7-24 23:13  /  1274 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

OC语言— super用法

/*
super
1、直接调用父类中的某个方法
2、super处在对象方法中,那么就会调用父类的对象方法
super处在类方法中,那么就会调用父类的类方法
3、使用场合:子类重写父类的方法时想保留父类的一些行为
*/


#include <Foundation/Foundation.h>


@interface Zoombie : NSObeject
- (void)walk;


+ (void)test;
- (void)test;
@end
@implementation Zoombie
- (void)walk
{
NSLog(@"往前跳下");
}


+ (void)test
{
NSLog(@"Zoombie+test");
}
- (void)test
{
NSLog(@"Zoombie-test");
}


@end


@interface JumpZoombie: Zoombie
+ (void)haha;
@end


@implementation JumpZoombie
+ (void)haha
{
[super test];
}
- (void)walk
{
NSLog(@"往前跳2下");


//直接调用父类的walk方法
[super walk];
//NSLog(@"往前跳下");
}


@end


int main()
{
[JumpZoombie haha];
// JumpZoombie *jz=[JumpZoombie new];
// [jz walk];

return 0;
}

3 个回复

倒序浏览
沙发:lol
回复 使用道具 举报
顶起。。。
回复 使用道具 举报
受教了~
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马