- 适配器模式:将一个类的借口转换成客户端希望的另一个接口
- 有一个很直观的图:
- 例如 :电源适配器(将110V电压转换成220V电压,其中Traget是220V电压,adaptee就是110V电压,Adapter就是适配器):
- 代码实现:
#import "Adapter.h" @implementation Adapter
-(int)changeTo220:(int)adaptee{
return ;
}
@endAdapter
#import "ViewController.h"
#import "Adapter.h"
@interface ViewController () @end @implementation ViewController - (void)viewDidLoad {
[super viewDidLoad]; int current = ;
Adapter * adapter = [[Adapter alloc]init];
int new = [adapter changeTo220:];
NSLog(@"%d",new); } - (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
} @endViewController
- 打印结果:
2016-05-09 16:46:26.262 Factory[2766:204337] 220
- 延伸总结:为什么说委托模式其实是适配器模式。其实Objecct-C中协议的概念就是定义一些外界可用的接口,那么外界需要用的值本类中的格式不一致。那么我们是不是可以在本类中声明一些接口,然后在本类接口中将外界需要的值我组织适配好通过声明的接口(协议)来传给外界。所以这么看来委托模式其实是适配器模式。