在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
在C#中,我们用接口来实现多态。比如接口IOb,定义了1个方法F; 有两个类A,B都实现了IOb接口。 IOb item = new A(); item.F();//执行的是A.F(); item = new B(); item.F();//执行的B.F(); 在objective-c中,interface 的含义和C#有了很大的不同,不能这样使用。 那么如何实现类似的效果呢。那就是特殊类型id,看如下代码段,注释:Fraction 和 Complex都包含print 方法。
#import “Fraction.h”
#import “Complex.h” int main (int argc, char *argv[]) { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; id dataValue;//定义了一个id 类型变量 Fraction *f1 = [[Fraction alloc] init]; Complex *c1 = [[Complex alloc] init]; [f1 setTo: 2 over: 5]; [c1 setReal: 10.0 andImaginary: 2.5]; // first dataValue gets a fraction dataValue = f1; [dataValue print]; //调用Fraction的 print方法 // now dataValue gets a complex number dataValue = c1; [dataValue print]; //调用Complex的 print方法 [c1 release];
|
请发表评论