实例解析Python设计模式编程之桥接模式的运用

作者:hitzjm 时间:2021-06-03 18:48:04 

我们先来看一个例子:


#encoding=utf-8
#
#by panda
#桥接模式

def printInfo(info):
 print unicode(info, 'utf-8').encode('gbk')

#抽象类:手机品牌
class HandsetBrand():
 soft = None
 def SetHandsetSoft(self, soft):
   self.soft = soft

def Run(self):
   pass

#具体抽象类:手机品牌1
class HandsetBrand1(HandsetBrand):
 def Run(self):
   printInfo('手机品牌1:')
   self.soft.Run()

#具体抽象类:手机品牌2
class HandsetBrand2(HandsetBrand):
 def Run(self):
   printInfo('手机品牌2:')
   self.soft.Run()

#功能类:手机软件
class HandsetSoft():
 def Run(self):
   pass

#具体功能类:游戏  
class HandsetGame(HandsetSoft):
 def Run(self):
   printInfo('运行手机游戏')

#具体功能类:通讯录  
class HandsetAddressList(HandsetSoft):
 def Run(self):
   printInfo('运行手机通信录')

def clientUI():
 h1 = HandsetBrand1()
 h1.SetHandsetSoft(HandsetAddressList())
 h1.Run()
 h1.SetHandsetSoft(HandsetGame())
 h1.Run()

h2 = HandsetBrand2()
 h2.SetHandsetSoft(HandsetAddressList())
 h2.Run()
 h2.SetHandsetSoft(HandsetGame())
 h2.Run()  
 return

if __name__ == '__main__':
 clientUI();

可以总结出类图是这样的: 

实例解析Python设计模式编程之桥接模式的运用

所以,桥接模式的概念在于将系统抽象部分与它的实现部分分离,使它们可以独立地变化。
由于目标系统存在多个角度的分类,每一种分类都会有多种变化,那么就可以把多角度分离出来,让它们独立变化,减少它们之间的耦合。

下面我们再来看一个实例:

基本原理请参考相关书籍,这里直接给实例

假期旅游 从目的地角度可以分为 上海和大连,从方式角度可以分为跟团和独体

桥接模式把这两种分类连接起来可以进行选择。

类图:

实例解析Python设计模式编程之桥接模式的运用


# -*- coding: utf-8 -*-
#######################################################
#
# tour.py
# Python implementation of the Class DaLian
# Generated by Enterprise Architect
# Created on:   11-十二月-2012 16:53:52
#
#######################################################

from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
from future_builtins import *

class TravelForm(object):
 """This class defines the interface for implementation classes.
 """
 def __init__(self, form="stay at home"):
   self.form=form
   pass

def GetForm(self):
   return self.form
   pass
 pass

class Group(TravelForm):
 """This class implements the Implementor interface and defines its concrete
 implementation.
 """
 def __init__(self, form="by group"):
   super(Group,self).__init__(form)    
   pass
 pass

class Independent(TravelForm):
 """This class implements the Implementor interface and defines its concrete
 implementation.
 """
 def __init__(self, form="by myself"):
   super(Independent,self).__init__(form)
   pass

class Destination(object):
 """This class (a) defines the abstraction's interface, and (b) maintains a
 reference to an object of type Implementor.
 """
 m_TravelForm= TravelForm()

def __init__(self, info):
   self.info=info
   pass

def GetInfo(self):
   # imp->Operation();
   return print(self.info + " " +self.form.GetForm())
   pass

def SetForm(self, form):
   self.form=form
   pass

class DaLian(Destination):
 """This class extends the interface defined by Abstraction.
 """
 def __init__(self, info="Go to DaLian "):
   super(DaLian,self).__init__(info)
   pass

class ShangHai(Destination):
 """This class extends the interface defined by Abstraction.
 """
 def __init__(self, info="Go to ShangHai"):
   super(ShangHai,self).__init__(info)
   pass
#客户端
if(__name__=="__main__"):

destination=ShangHai()
 destination.SetForm(Group())
 destination.GetInfo()

destination=DaLian()
 destination.SetForm(Independent())
 destination.GetInfo()

运行结果

实例解析Python设计模式编程之桥接模式的运用

标签:Python,设计模式
0
投稿

猜你喜欢

  • asp连接MYSQL数据库的连接字符串(参数OPTION)

    2009-03-09 18:24:00
  • python3实现暴力穷举博客园密码

    2022-10-24 22:38:21
  • python获取一组数据里最大值max函数用法实例

    2022-01-28 00:02:44
  • .NET Core、Xamarin、.NET Standard和.NET Framework四者之间的区别介绍

    2023-07-13 03:38:13
  • ASP获取远程文件大小信息(通过header头信息)

    2010-03-11 21:25:00
  • Python Socket编程详细介绍

    2021-01-02 02:56:21
  • 使用Javascript监控前端相关数据的代码

    2024-04-17 09:43:02
  • Javascript DOM 编程实例讲解--仿LightBox效果提示框

    2008-05-01 13:25:00
  • 你需要学会的8个Python列表技巧

    2023-11-19 09:36:21
  • Python操作mongodb的9个步骤

    2023-03-11 15:37:53
  • python使用Plotly绘图工具绘制散点图、线形图

    2022-06-24 08:11:50
  • 在python3中实现查找数组中最接近与某值的元素操作

    2023-10-30 22:35:19
  • Python如何实现转换URL详解

    2021-06-28 20:23:46
  • 在Python中使用sort()方法进行排序的简单教程

    2022-08-21 07:05:47
  • Python中使用Counter进行字典创建以及key数量统计的方法

    2023-10-05 20:16:36
  • perl用{}修饰变量名的写法分享

    2023-03-18 05:43:00
  • Javascript动态伸缩+淡出淡入

    2024-06-22 02:57:21
  • BootStrap表单控件之复选框checkbox和单选择按钮radio

    2023-08-20 09:36:22
  • 判断数据库表是否存在以及修改表名的方法

    2024-01-22 09:21:24
  • 给展示性图片增加提示工具条(黑白效果)

    2007-10-20 14:21:00
  • asp之家 网络编程 m.aspxhome.com