意图:
将抽象部分与它的实现部分分离,使它们都可以独立地变化。
适用性:
你不希望在抽象和它的实现部分之间有一个固定的绑定关系。例如这种情况可能是因为,在程序运行时刻实现部分应可以被选择或者切换。
类的抽象以及它的实现都应该可以通过生成子类的方法加以扩充。这时Bridge 模式使你可以对不同的抽象接口和实现部分进行组合,并分别对它们进行扩充。
对一个抽象的实现部分的修改应对客户不产生影响,即客户的代码不必重新编译。
案例一
'''
Bridge
'''
# ConcreteImplementor 1/2
class DrawingAPI1(object):
def draw_circle(self, x, y, radius):
print('API1.circle at {}:{} radius {}'.format(x, y, radius))
# ConcreteImplementor 2/2
class DrawingAPI2(object):
def draw_circle(self, x, y, radius):
print('API2.circle at {}:{} radius {}'.format(x, y, radius))
# Refined Abstraction
class CircleShape(object):
def __init__(self, x, y, radius, drawing_api):
self._x = x
self._y = y
self._radius = radius
self._drawing_api = drawing_api
# low-level i.e. Implementation specific
def draw(self):
self._drawing_api.draw_circle(self._x, self._y, self._radius)
# high-level i.e. Abstraction specific
def scale(self, pct):
self._radius *= pct
def main():
shapes = (
CircleShape(1, 2, 3, DrawingAPI1()),
CircleShape(5, 7, 11, DrawingAPI2())
)
for shape in shapes:
shape.scale(2.5)
shape.draw()
if __name__ == '__main__':
main()
案例二:以切换电视频道为例
# 定义频道基类
class Channel:
def play(self):
pass
# CCTV频道
class CCTV(Channel):
def play(self):
print("正在播放新闻联播")
# 芒果卫视
class MongoTV(Channel):
def play(self):
print("快乐大本营")
# 浙江卫视
class ZhejiangTV(Channel):
def play(self):
print("全是...")
# 定义电视类
class TV:
def __int__(self):
self.channel=None
# 定义一个转换频道的函数,
def change_channel(self,channel):
self.channel=channel
# 播放
def run(self):
self.channel.play()
# 创建一个tv对象
tv=TV()
tv.change_channel(CCTV())
tv.run()
tv.change_channel(MongoTV())
tv.run()
tv.change_channel(ZhejiangTV())
tv.run()
运行结果
'''
正在播放新闻联播
快乐大本营
全是...
'''