名称:桥接模式
意图:将抽象部分与它的实现部分分离,使它们都可以独立地变化。
适用环境:
1、你不希望在抽象和它的实现部分之间有一个固定的绑定关系。
例如这种情况可能是因为,在程序运行时刻实现部分应可以被选择或者切换。
2、类的抽象以及它的实现都应该可以通过生成子类的方法加以扩充。这时Bridge模式使你可以对不同的抽象接口和实现部分进行组合,并分别对它们进行扩充。
3、对一个抽象的实现部分的修改应对客户不产生影响,即客户的代码不必重新编译。
4、(C++)你想对客户完全隐藏抽象的实现部分。在C++中,类的表示在类接口中是可以见的。
5、有许多类要生成。这样一种类层次结构说明你必须将一个对象分解成两个部分。Rumbaugh称这种类层次结构为“嵌套的普化”(netsted generalizations)。
6、你想在多个对象间共享实现(可能使用引用计数),但同时要求客户并不知道这一点。
classAbstraction
{
protectedImplementorimplementor;
publicImplementorImplementor
{
set{implementor=value;}
}
publicvirtualvoidOperation()
{
implementor.Operation();
}
}
abstractclassImplementor
{
publicabstractvoidOperation();
}
classRefinedAbstraction: Abstraction
{
publicoverridevoidOperation()
{
implementor.Operation();
}
}
classConcreteImplementorA: Implementor
{
publicoverridevoidOperation()
{
Console.WriteLine("ConcreteImplementorA Operation");
}
}
classConcreteImplementorB: Implementor
{
publicoverridevoidOperation()
{
Console.WriteLine("ConcreteImplementorB Operation");
}
}
调用:
//set
Abstractionab = newRefinedAbstraction();
ab.Implementor = newConcreteImplementorA();
ab.Operation();
//change
ab.Implementor = newConcreteImplementorB();
ab.Operation();
输出:
ConcreteImplementorA Operation
ConcreteImplementorB Operation