桥接模式比较抽象,难理解,小哥看了很多其他博主的资料,看到一篇不错,转载一下。
转载请标明出处:https://blog.csdn.net/u013256816/article/details/51000327
定义:将抽象部分与它的实现部分分离,使它们都可以独立地变化。
意图:将抽象与实现解耦。
桥接模式主要应对的是由于实际的需要,某个类具有两个或者两个以上的维度变化(违反了SRP原则),如果只是用继承将无法实现这种需要,或者使得设计变得相当臃肿。
桥接模式所涉及的角色
1. Abstraction:定义抽象接口,拥有一个Implementor类型的对象引用 (这就是桥角色)
2. RefinedAbstraction:扩展Abstraction中的接口定义
3. Implementor:是具体实现的接口,Implementor和RefinedAbstraction接口并不一定完全一致,实际上这两个接口可以完全不一样Implementor提供具体操作方法,而Abstraction提供更高层次的调用
4. ConcreteImplementor:实现Implementor接口,给出具体实现
举个简单例子(评判一个地方红烧肉的口味,这里出现了两个维度的变化:地域和餐馆品牌) 。(小哥认为该例子比较难理解,可以看例子2和例子3)
1 Implementor(这里是餐馆的接口)
public interface Restaurant
{
public String taste();
}
2 ConcreteImplementor(具体的餐馆:小南国和外婆家)
public class XiaoNanGuo implements Restaurant
{
@Override
public String taste()
{
return "红烧肉比较好吃";
}
}
public class WaiPojia implements Restaurant
{
@Override
public String taste()
{
return "红烧肉比较一般";
}
}
3 Abstraction(城市抽象类,这里包含了一个Implementor)
public abstract class AbstractCityArea
{
protected Restaurant restaurant;
public AbstractCityArea(Restaurant restaurant)
{
this.restaurant = restaurant;
}
public abstract void commentTaste();
}
4 RefinedAbstraction(具体的城市类)
public class NanjingRestaurant extends AbstractCityArea
{
public NanjingRestaurant(Restaurant restaurant)
{
super(restaurant);
}
@Override
public void commentTaste()
{
System.out.println("南京的"+super.restaurant.taste());
}
}
public class ShanghaiRestaurant extends AbstractCityArea
{
public ShanghaiRestaurant(Restaurant restaurant)
{
super(restaurant);
}
@Override
public void commentTaste()
{
System.out.println("上海的"+super.restaurant.taste());
}
}
5 测试代码
(加入有个外国人来到中国,比如去了上海要吃红烧肉,正好他去了小南国,这时候他要评价了)
Restaurant rest = new XiaoNanGuo();
AbstractCityArea sr = new ShanghaiRestaurant(rest);
sr.commentTaste();
输出:上海的红烧肉比较好吃
(有一天他又来到南京,去外婆家去吃红烧肉,吃完又要评价了)
Restaurant rest = new WaiPojia();
AbstractCityArea sr = new NanjingRestaurant(rest);
sr.commentTaste();
输出:南京的红烧肉比较一般~
也许这个例子不够形象,那再举个例子好了:交通工具在路上行驶,这里有两个维度的变化,首先交通工具的类型不同,其次路也分水泥路和柏油路。
1 交通工具(Implementor)
public interface Vehicle
{
public void drive();
}
2 具体的交通工具(ConcreteImplementor)
public class Car implements Vehicle
{
@Override
public void drive()
{
System.out.print("小轿车");
}
}
public class Bus implements Vehicle
{
@Override
public void drive()
{
System.out.print("大巴");
}
}
3 抽象的路(Abstraction)
public abstract class Road
{
protected Vehicle vehicle;
public Road(Vehicle vehicle)
{
this.vehicle = vehicle;
}
public abstract void driveOnRoad();
}
4 具体的路
public class UnpavedRoad extends Road
{
public UnpavedRoad(Vehicle vehicle)
{
super(vehicle);
}
@Override
public void driveOnRoad()
{
super.vehicle.drive();
System.out.println("行驶在石子路");
}
}
public class CementRoad extends Road
{
public CementRoad(Vehicle vehicle)
{
super(vehicle);
}
@Override
public void driveOnRoad()
{
super.vehicle.drive();
System.out.println("行驶在水泥路");
}
}
5 测试代码:
Road road = new CementRoad(new Car());
road.driveOnRoad();
输出:小轿车行驶在水泥路
上面这个例子还有一种桥接实现方式,可以自己试一下。
实例3(小哥自己写的例子):画图形,涉及俩维度,形状和颜色
public interface Shape { void draw(); }
public class Circle implements Shape { public void draw() { System.out.println("---draw circle"); } }
public class Rectangle implements Shape { public void draw() { System.out.println("------draw Rectangle"); } }
下面抽象类即为桥角色:
public abstract class Color { protected Shape shape; public Color(Shape shape) { this.shape = shape; } public abstract void fillShapeWithColor(); }
public class GreenColor extends Color { public GreenColor(Shape shape) { super(shape); } public void fillShapeWithColor() { super.shape.draw(); System.out.println("-----填充绿色"); } }
public class RedColor extends Color { public RedColor(Shape shape) { super(shape); } public void fillShapeWithColor() { super.shape.draw(); System.out.println("---填充红色"); } }测试:
public class Client { public static void main(String[] args) { Color red=new RedColor(new Circle()); red.fillShapeWithColor(); Color red2=new RedColor(new Rectangle()); red2.fillShapeWithColor(); Color green=new GreenColor(new Circle()); green.fillShapeWithColor(); Color green2=new GreenColor(new Rectangle()); green2.fillShapeWithColor(); } }
结果:
---draw circle
---填充红色
------draw Rectangle
---填充红色
---draw circle
-----填充绿色
------draw Rectangle
-----填充绿色
小哥总结:小哥感觉桥接模式就是对不同维度进行抽象,得到抽象接口和抽象类,抽象类包含抽象接口,抽象类即为桥,把抽象和行为实现分离
效果及实现要点:
使用场景
Jdk中的桥接模式:JDBC
JDBC连接数据库的时候,在各个数据库之间进行切换,基本不需要动太多的代码,甚至丝毫不动,原因就是JDBC提供了统一接口,每个数据库提供各自的实现,用一个叫做数据库驱动的程序来桥接就行了