欢迎来到天天文库
浏览记录
ID:47105551
大小:236.15 KB
页数:11页
时间:2019-08-04
《Net设计模式实例之桥接模式(BridgePattern)》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、Net设计模式实例之桥接模式(BridgePattern)一、桥接模式简介(BriefIntroduction)桥接模式(BridgePattern),将抽象部分与它的实现部分分离,使的抽象和实现都可以独立地变化。Decoupleanabstractionfromitsimplementationsothatthetwocanvaryindependently.。什么是聚合/组合:聚合(Aggregation),当对象A被加入到对象B中,成为对象B的组成部分时,对象B和对象A之间为聚合关系。聚合是关联关系的一种,是较强的关联关系,强调的是整体与部分之间的关系。场景:商品和他的规格、样式就是聚
2、合关系。类与类的聚合关系图 组合(Composite),对象A包含对象B,对象B离开对象A没有实际意义。是一种更强的关联关系。人包含手,手离开人的躯体就失去了它应有的作用。场景:Window窗体由滑动条slider、头部Header和工作区Panel组合而成。类与类的组合关系图聚合与合成原则:尽量使用聚合或者组合,尽量不使用类继承。对象的继承关系是在编译时就定义好的,所以无法在运行时改变从父类继承的实现。子类的实现与它的父类有着非常紧密的依赖关系,以至于父类实现中的任何变化必然会导致子类发生变化。当需要复用子类时,如果集成下来的实现不符合解决新的问题,则父类必然重写或被其他更合适的类替换。
3、这种依赖关系限制了灵活性并最终限制了复用性。二、解决的问题(WhatToSolve)当系统有多维角度分类时,而每一种分类又有可能变化,这时考虑使用桥接模式比较合适。三、桥接模式分析(Analysis)1、桥接模式结构 Abstraction类:业务抽象类,定义一个抽象接口,维护对Impementor的引用.RefinedAbstraction类:具体实现类,被提炼的抽象Implementor类:定义一个抽象实现类,此抽象类与Abstraction类不一定完全相同。Implementor类提供了一些原始的操作,而Abstraction类是对这些原始操作一个更高层次的封装.ConcreteImp
4、lementorA,ConcreteImplementorA类:具体实现2、代码1、业务抽象类Abstraction及其提炼出的具体实现类RefinedAbstractionpublicabstractclassAbstraction{protectedImplementor_implementor; publicImplementorImplementor{set{_implementor=value;}get{return_implementor;}} publicvirtualvoidOperation(){_implementor.OperationImp();}} publiccl
5、assRefinedAbstraction:Abstraction{publicoverridevoidOperation(){_implementor.OperationImp();}} 2、抽象实现类Implementor及其具体实现类ConcreteImplementorA和ConcreteImplementorBpublicabstractclassImplementor{publicabstractvoidOperationImp();} publicclassConcreteImplementorA:Implementor{publicoverridevoidOperationI
6、mp(){Console.WriteLine("{0}OperationMethod",this.GetType().Name);}} publicclassConcreteImplementorB:Implementor{publicoverridevoidOperationImp(){Console.WriteLine("{0}OperationMethod",this.GetType().Name);}} 2、客户端代码staticvoidMain(string[]args){Abstractiona1=newRefinedAbstraction(); //Setimplementat
7、ionandcalla1.Implementor=newConcreteImplementorA();a1.Operation(); //Changeimplementionandcalla1.Implementor=newConcreteImplementorB();a1.Operation(); Console.ReadKey();}3、实例运行结果 四.桥接模式实例分析(Example)1、场景业务对象
此文档下载收益归作者所有