Objective-C - iOS 中的多态性

Polymorphism in Objective-C - iOS

我在 C++ 中使用多态性已经很长时间了,我更喜欢使用它。 Objective-C 有这个功能吗?也许与代表有关?

我玩iOS开发有一段时间了,一直在使用MessageUI和iAd等框架。

所以当我导入这些类型的框架然后使用它们的方法时,例如:

- (void)mailComposeController:(MFMailComposeViewController*)controller  
      didFinishWithResult:(MFMailComposeResult)result 
                    error:(NSError*)error;

这是否意味着我本质上是在 Objective-C 中使用多态性?

根据定义,多态性这个词意味着多种形式。

多态性通常是一个非常广泛的话题,基本上它会调用很多东西,比如方法重载、运算符重载、继承、可重用性。

而且我不认为我实现了多态性,而是使用了特定的术语,如继承、运算符重载、方法重载 e.t.c。

Objective-C 多态性意味着对成员函数的调用将导致执行不同的函数,具体取决于调用该函数的对象的类型。

例如 -

我有一个基classShape,定义为-

#import <Foundation/Foundation.h>

@interface Shape : NSObject {

    CGFloat area;
}

- (void)printArea;
- (void)calculateArea;
@end

@implementation Shape

- (void)printArea {
    NSLog(@"The area is %f", area);
}

- (void)calculateArea {
}

@end

我从 Shape 派生了两个基础 classes SquareRectangle 作为 -

@interface Square : Shape { 

    CGFloat length;
}

- (id)initWithSide:(CGFloat)side;

- (void)calculateArea;

@end

@implementation Square

- (id)initWithSide:(CGFloat)side {
    length = side;
    return self;
}

- (void)calculateArea {
    area = length * length;
}

- (void)printArea {
    NSLog(@"The area of square is %f", area);
}

@end

@interface Rectangle : Shape {

    CGFloat length;
    CGFloat breadth;
}

- (id)initWithLength:(CGFloat)rLength andBreadth:(CGFloat)rBreadth;

@end

@implementation Rectangle

- (id)initWithLength:(CGFloat)rLength andBreadth:(CGFloat)rBreadth {
    length = rLength;
    breadth = rBreadth;
    return self;
}

- (void)calculateArea {
    area = length * breadth;
}

@end

现在任何对象上的调用方法都会调用对应的class方法,如-

int main(int argc, const char * argv[]) {

    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    Shape *square = [[Square alloc]initWithSide:10.0];
    [square calculateArea];
    [square printArea];
    Shape *rect = [[Rectangle alloc]
    initWithLength:10.0 andBreadth:5.0];
    [rect calculateArea];
    [rect printArea];        
    [pool drain];
    return 0;
}

正如你问的

- (void)mailComposeController:(MFMailComposeViewController*)controller  
      didFinishWithResult:(MFMailComposeResult)result 
      error:(NSError*)error;

上述方法是MFMailComposeViewController class的委托方法,是的,因为它是由委托实现者实现的,所以它可以根据法律准则的要求进行定制实现,并且所以它也是多态的一种形式(因为委托方法可以通过多种方式实现)。