gpt4 book ai didi

c++ - Objective-C 中的多态性 - iOS

转载 作者:行者123 更新时间:2023-11-28 06:18:13 25 4
gpt4 key购买 nike

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

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

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

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

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

最佳答案

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

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

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

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

例如——

我有一个基类Shape,定义为-

#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 派生了两个基类 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

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

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类的委托(delegate)方法,是的,因为它是由委托(delegate)实现者实现的,所以它可以根据法律准则的要求进行定制实现,所以它也是一种多态形式(因为委托(delegate)方法可以通过多种方式实现)。

关于c++ - Objective-C 中的多态性 - iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29828042/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com