【OC】oc中的多态

抽象的打印机类Printer

Printer.h

@interface Printer : NSObject  
   
- (void) print;  
   
@end


Printer.m

#import "Printer.h"  
   
@implementation Printer  
   
- (void)print{  
    NSLog(@"打印机打印纸张");  
}  
   
@end

_____________________________________________________________________________

子类

ColorPrinter.h

#import "Printer.h"  
   
//修改父类的打印行为  
@interface ColorPrinter : Printer  
- (void)print;  
@end


ColorPrinter.m

#import "ColorPrinter.h"  
   
@implementation ColorPrinter  
   
- (void)print{  
    NSLog(@"彩色打印机");  
}  
   
@end
_____________________________________________________________________________

另外一个子类

BlackPrinter.h

#import "Printer.h"  
   
//修改父类的打印行为  
@interface BlackPrinter : Printer  
- (void)print;  
@end


BlackPrinter.m

#import "BlackPrinter.h"  
   
@implementation BlackPrinter  
   
- (void)print{  
    NSLog(@"黑白打印机");  
}  
   
@end

_____________________________________________________________________________

定义一个person类,用来操作打印机,这里省略了Person.h

Person.m

#import "Person.h"  
   
@implementation Person  
   
/* 
- (void) printWithColor:(ColorPrinter *)colorPrint{ 
    [colorPrint print]; 
} 
  
- (void) printWithBlack:(BlackPrinter *)blackPrint{ 
    [blackPrint print]; 
} 
 */  
   
- (void) doPrint:(Printer *)printer{  
    [printer print];  
}  
   
@end



_____________________________________________________________________________


主函数main.h

#import   
   
#import "Person.h"  
#import "BlackPrinter.h"  
#import "ColorPrinter.h"  
   
int main(int argc, const charchar * argv[]) {  
    @autoreleasepool {  
           
        Person *person =[[Person alloc] init];  
           
        ColorPrinter *colorPrint = [[ColorPrinter alloc] init];  
        BlackPrinter *blackPrint = [[BlackPrinter alloc] init];  
           
        //多态的定义  
        /* 
        Printer *p1 = [[ColorPrinter alloc] init]; 
        Printer *p2 = [[BlackPrinter alloc] init]; 
          
        [person doPrint:p1]; 
        [person doPrint:p2]; 
         */  
           
        //通过控制台输入的命令来控制使用哪个打印机  
        int cmd;  
        do{  
            scanf("%d",&cmd);  
            if(cmd == 1){  
                [person doPrint:colorPrint];  
            }else if(cmd == 2){  
                [person doPrint:blackPrint];  
            }  
        }while (1);  
           
    }  
    return 0;  
}



上面的例子是一个彩色打印机和黑白打印机这两种打印机,然后Person类中有一个操作打印的方法,当然这个方法是需要打印机对象的,如果不用多态机制实现的话(Person.h中注释的代码部分),就是给两种打印机单独定义个操作的方法,然后在Person.m(代码中注释的部分)中用具体的打印机对象进行操作,在main.m文件中,我们看到,当Person需要使用哪个打印机的时候,就去调用指定的方法:

[person printWithBlack:blackPrint];//调用黑白打印机  
[person printWithColor:colorPrint];//调用彩色打印机

这种设计就不好了,为什么呢?假如现在又有一种打印机,那么我们还需要在Person.h中定义一种操作这种打印机的方法,那么后续如果在添加新的打印机呢?还在添加方法吗?那么Person.h文件就会变得很臃肿。所以这时候多态就体现到好处了,使用父类类型,在Person.h中定义一个方法就可以了:

- (void) doPrint:(Printer *)printer;

这里看到了,这个方法的参数类型就是父类的类型,这就是多态,定义类型为父类类型,实际类型为子类类型

- (void) doPrint:(Printer *)printer{  
    [printer print];  
}


这里调用print方法,就是传递进来的实际类型的print方法。

Printer *p1 = [[ColorPrinter alloc] init];  
Printer *p2 = [[BlackPrinter alloc] init];  
           
[person doPrint:p1];  
[person doPrint:p2];

这里的p1,p2表面上的类型是Printer,但是实际类型是子类类型,所以会调用他们自己对应的print方法。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Zok93

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值