在Objective-C中,多态可以通过使用继承和方法重写来实现。具体步骤如下:
@interface Shape : NSObject
- (void)draw;
@end
@interface Circle : Shape
@end
@implementation Circle
- (void)draw {
NSLog(@"Drawing a circle");
}
@end
@interface Rectangle : Shape
@end
@implementation Rectangle
- (void)draw {
NSLog(@"Drawing a rectangle");
}
@end
Shape *shape1 = [[Circle alloc] init];
[shape1 draw];
Shape *shape2 = [[Rectangle alloc] init];
[shape2 draw];
在上面的例子中,即使shape1和shape2是不同的子类对象,但由于它们都是父类Shape的实例,所以可以调用相同的draw方法,实现了多态的效果。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。