python为语言的设计模式

摘录自

http://www.cnblogs.com/wuyuegb2312/archive/2013/04/09/3008320.html

 

一、简单工厂模式

模式特点:工厂根据条件产生不同功能的类。

程序实例:四则运算计算器,根据用户的输入产生相应的运算类,用这个运算类处理具体的运算。

代码特点:C/C++中的switch...case...分支使用字典的方式代替。

     使用异常机制对除数为0的情况进行处理。

Python代码   收藏代码
  1. class Operation:  
  2.     def GetResult(self):  
  3.         pass  
  4.   
  5.   
  6. class OperationAdd(Operation):  
  7.     def GetResult(self):  
  8.         return self.op1 + self.op2  
  9.   
  10.   
  11. class OperationSub(Operation):  
  12.     def GetResult(self):  
  13.         return self.op1 - self.op2  
  14.   
  15.   
  16. class OperationMul(Operation):  
  17.     def GetResult(self):  
  18.         return self.op1 * self.op2  
  19.   
  20.   
  21. class OperationDiv(Operation):  
  22.     def GetResult(self):  
  23.         try:  
  24.             result = self.op1 / self.op2  
  25.             return result  
  26.         except:  
  27.             print "error:divided by zero."  
  28.             return 0  
  29.   
  30.   
  31. class OperationUndef(Operation):  
  32.     def GetResult(self):  
  33.         print "Undefine operation."  
  34.         return 0  
  35.   
  36.   
  37. class OperationFactory:  
  38.     operation = {}  
  39.     operation["+"] = OperationAdd();  
  40.     operation["-"] = OperationSub();  
  41.     operation["*"] = OperationMul();  
  42.     operation["/"] = OperationDiv();  
  43.   
  44.     def createOperation(self, ch):  
  45.         if ch in self.operation:  
  46.             op = self.operation[ch]  
  47.         else:  
  48.             op = OperationUndef()  
  49.         return op  
  50.   
  51.   
  52. if __name__ == "__main__":  
  53.     op = raw_input("operator: ")  
  54.     opa = input("a: ")  
  55.     opb = input("b: ")  
  56.     factory = OperationFactory()  
  57.     cal = factory.createOperation(op)  
  58.     cal.op1 = opa  
  59.     cal.op2 = opb  
  60.     print cal.GetResult()  
 

 

二、策略模式

模式特点:定义算法家族并且分别封装,它们之间可以相互替换而不影响客户端。

程序实例:商场收银软件,需要根据不同的销售策略方式进行收费

代码特点:不同于同例1,这里使用字典是为了避免关键字不在字典导致bug的陷阱。

Python代码   收藏代码
  1. class CashSuper:  
  2.     def AcceptCash(self, money):  
  3.         return 0  
  4.   
  5.   
  6. class CashNormal(CashSuper):  
  7.     def AcceptCash(self, money):  
  8.         return money  
  9.   
  10.   
  11. class CashRebate(CashSuper):  
  12.     discount = 0  
  13.   
  14.     def __init__(self, ds):  
  15.         self.discount = ds  
  16.   
  17.     def AcceptCash(self, money):  
  18.         return money * self.discount  
  19.   
  20.   
  21. class CashReturn(CashSuper):  
  22.     total = 0;  
  23.     ret = 0;  
  24.   
  25.     def __init__(self, t, r):  
  26.         self.total = t  
  27.         self.ret = r  
  28.   
  29.     def AcceptCash(self, money):  
  30.         if (money >= self.total):  
  31.             return money - self.ret  
  32.         else:  
  33.             return money  
  34.   
  35.   
  36. class CashContext:  
  37.     def __init__(self, csuper):  
  38.         self.cs = csuper  
  39.   
  40.     def GetResult(self, money):  
  41.         return self.cs.AcceptCash(money)  
  42.   
  43.   
  44. if __name__ == "__main__":  
  45.     money = input("money:")  
  46.     strategy = {}  
  47.     strategy[1] = CashContext(CashNormal())  
  48.     strategy[2] = CashContext(CashRebate(0.8))  
  49.     strategy[3] = CashContext(CashReturn(300, 100))  
  50.     ctype = input("type:[1]for normal,[2]for 80% discount [3]for 300 -100.")  
  51.     if ctype in strategy:  
  52.         cc = strategy[ctype]  
  53.     else:  
  54.         print "Undefine type.Use normal mode."  
  55.         cc = strategy[1]  
  56.     print "you will pay:%d" % (cc.GetResult(money))  
 

三、装饰模式

模式特点:动态地为对象增加额外的职责

程序实例:展示一个人一件一件穿衣服的过程。

代码特点:无

Python代码 
  1. class Person:  
  2.     def __init__(self, tname):  
  3.         self.name = tname  
  4.   
  5.     def Show(self):  
  6.         print "dressed %s" % (self.name)  
  7.   
  8.   
  9. class Finery(Person):  
  10.     componet = None  
  11.   
  12.     def __init__(self):  
  13.         pass  
  14.   
  15.     def Decorate(self, ct):  
  16.         self.componet = ct  
  17.   
  18.     def Show(self):  
  19.         if (self.componet != None):  
  20.             self.componet.Show()  
  21.   
  22.   
  23. class TShirts(Finery):  
  24.     def __init__(self):  
  25.         pass  
  26.   
  27.     def Show(self):  
  28.         print "Big T-shirt "  
  29.         self.componet.Show()  
  30.   
  31.   
  32. class BigTrouser(Finery):  
  33.     def __init__(self):  
  34.         pass  
  35.   
  36.     def Show(self):  
  37.         print "Big Trouser "  
  38.         self.componet.Show()  
  39.   
  40.   
  41. if __name__ == "__main__":  
  42.     p = Person("somebody")  
  43.     bt = BigTrouser()  
  44.     ts = TShirts()  
  45.     bt.Decorate(p)  
  46.     ts.Decorate(bt)  
  47.     ts.Show()  
 

四、代理模式

模式特点:为其他对象提供一种代理以控制对这个对象的访问。

程序实例:同模式特点描述。

代码特点:无

Python代码  
  1. class Interface :  
  2.     def Request(self):  
  3.     return 0  
  4.   
  5. class RealSubject(Interface):   
  6.     def Request(self):  
  7.         print "Real request."  
  8.   
  9. class Proxy(Interface):  
  10.     def Request(self):  
  11.         self.real = RealSubject()  
  12.         self.real.Request()  
  13.   
  14. if __name__ == "__main__":  
  15.     p = Proxy()  
  16.     p.Request()  
 

五、工厂方法模式

模式特点:定义一个用于创建对象的接口,让子类决定实例化哪一个类。这使得一个类的实例化延迟到其子类。

程序实例:基类雷锋类,派生出学生类和志愿者类,由这两种子类完成“学雷锋”工作。子类的创建由雷锋工厂的对应的子类完成。

代码特点:无

Python代码  
  1. class LeiFeng:  
  2.     def Sweep(self):  
  3.         print "LeiFeng sweep"  
  4.   
  5.   
  6. class Student(LeiFeng):  
  7.     def Sweep(self):  
  8.         print "Student sweep"  
  9.   
  10.   
  11. class Volenter(LeiFeng):  
  12.     def Sweep(self):  
  13.         print "Volenter sweep"  
  14.   
  15.   
  16. class LeiFengFactory:  
  17.     def CreateLeiFeng(self):  
  18.         temp = LeiFeng()  
  19.         return temp  
  20.   
  21.   
  22. class StudentFactory(LeiFengFactory):  
  23.     def CreateLeiFeng(self):  
  24.         temp = Student()  
  25.         return temp  
  26.   
  27.   
  28. class VolenterFactory(LeiFengFactory):  
  29.     def CreateLeiFeng(self):  
  30.         temp = Volenter()  
  31.         return temp  
  32.   
  33.   
  34. if __name__ == "__main__":  
  35.     sf = StudentFactory()  
  36.     s = sf.CreateLeiFeng()  
  37.     s.Sweep()  
  38.     sdf = VolenterFactory()  
  39.     sd = sdf.CreateLeiFeng()  
  40.     sd.Sweep()  
 

 

 六、原型模式

模式特点:用原型实例指定创建对象的种类,并且通过拷贝这些原型创建新的对象。

程序实例:从简历原型,生成新的简历

代码特点:简历类Resume提供的Clone()方法其实并不是真正的Clone,只是为已存在对象增加了一次引用。

     Python为对象提供的copy模块中的copy方法和deepcopy方法已经实现了原型模式,但由于例子的层次较浅,二者看不出区别。

    

import copy
class WorkExp:
    place=""
    year=0

class Resume:
    name = ''
    age = 0
    def __init__(self,n):
        self.name = n
    def SetAge(self,a):
        self.age = a
    def SetWorkExp(self,p,y):
        self.place = p
        self.year = y
    def Display(self):
        print self.age
        print self.place
        print self.year
    def Clone(self):
    #实际不是“克隆”,只是返回了自身
        return self

if __name__ == "__main__":
    a = Resume("a")
    b = a.Clone()
    c = copy.copy(a)
    d = copy.deepcopy(a)
    a.SetAge(7)
    b.SetAge(12)
    c.SetAge(15)
    d.SetAge(18)
    a.SetWorkExp("PrimarySchool",1996)
    b.SetWorkExp("MidSchool",2001)
    c.SetWorkExp("HighSchool",2004)
    d.SetWorkExp("University",2007)
    a.Display()
    b.Display()
    c.Display()
    d.Display()

七、模板方法模式

 

模式特点:定义一个操作中的算法骨架,将一些步骤延迟至子类中。

程序实例:考试时使用同一种考卷(父类),不同学生上交自己填写的试卷(子类方法的实现)

代码特点:无

Python代码 
  1. class Paper:  
  2.     def Question1(self):  
  3.         print "1:A. B. C. D."  
  4.         print "(%s)" % self.Answer1()  
  5.   
  6.     def Question2(self):  
  7.         print "1:A. B. C. D."  
  8.         print "(%s)" % self.Answer2()  
  9.   
  10.     def Answer1(self):  
  11.         return ""  
  12.   
  13.     def Answer2(self):  
  14.         return ""  
  15.   
  16.   
  17. class PaperA(Paper):  
  18.     def Answer1(self):  
  19.         return "B"  
  20.   
  21.     def Answer2(self):  
  22.         return "C";  
  23.   
  24.   
  25. class PaperB(Paper):  
  26.     def Answer1(self):  
  27.         return "D"  
  28.   
  29.     def Answer2(self):  
  30.         return "D";  
  31.   
  32.   
  33. if __name__ == "__main__":  
  34.     s1 = PaperA()  
  35.     s2 = PaperB()  
  36.     print "student 1"  
  37.     s1.Question1()  
  38.     s1.Question2()  
  39.     print "student 2"  
  40.     s2.Question1()  
  41.     s2.Question2()  
 

 

 八、外观模式

模式特点:为一组调用提供一致的接口。

程序实例:接口将几种调用分别组合成为两组,用户通过接口调用其中的一组。

代码特点:无

 
class SubSystemOne:
    def MethodOne(self):
        print "SubSysOne"

class SubSystemTwo:
    def MethodTwo(self):
        print "SubSysTwo"

class SubSystemThree:
    def MethodThree(self):
        print "SubSysThree"

class SubSystemFour:
    def MethodFour(self):
        print "SubSysFour"


class Facade:
    def __init__(self):
        self.one = SubSystemOne()
        self.two = SubSystemTwo()
        self.three = SubSystemThree()
        self.four = SubSystemFour()
    def MethodA(self):
        print "MethodA"
        self.one.MethodOne()
        self.two.MethodTwo()
        self.four.MethodFour()
    def MethodB(self):
        print "MethodB"
        self.two.MethodTwo()
        self.three.MethodThree()

if __name__ == "__main__":
    facade = Facade()
    facade.MethodA()
    facade.MethodB()

 

九、建造者模式

 

模式特点:将一个复杂对象的构建(Director)与它的表示(Builder)分离,使得同样的构建过程可以创建不同的表示(ConcreteBuilder)。

程序实例:“画”出一个四肢健全(头身手腿)的小人

代码特点:无

Python代码 
  1. class Person:  
  2.     def CreateHead(self):  
  3.         pass  
  4.   
  5.     def CreateHand(self):  
  6.         pass  
  7.   
  8.     def CreateBody(self):  
  9.         pass  
  10.   
  11.     def CreateFoot(self):  
  12.         pass  
  13.   
  14.   
  15. class ThinPerson(Person):  
  16.     def CreateHead(self):  
  17.         print "thin head"  
  18.   
  19.     def CreateHand(self):  
  20.         print "thin hand"  
  21.   
  22.     def CreateBody(self):  
  23.         print "thin body"  
  24.   
  25.     def CreateFoot(self):  
  26.         print "thin foot"  
  27.   
  28.   
  29. class ThickPerson(Person):  
  30.     def CreateHead(self):  
  31.         print "thick head"  
  32.   
  33.     def CreateHand(self):  
  34.         print "thick hand"  
  35.   
  36.     def CreateBody(self):  
  37.         print "thick body"  
  38.   
  39.     def CreateFoot(self):  
  40.         print "thick foot"  
  41.   
  42.   
  43. class Director:  
  44.     def __init__(self, temp):  
  45.         self.p = temp  
  46.   
  47.     def Create(self):  
  48.         self.p.CreateHead()  
  49.         self.p.CreateBody()  
  50.         self.p.CreateHand()  
  51.         self.p.CreateFoot()  
  52.   
  53.   
  54. if __name__ == "__main__":  
  55.     p = ThickPerson()  
  56.     d = Director(p)  
  57.     d.Create()  
 

 

十、观察者模式

模式特点:定义了一种一对多的关系,让多个观察对象同时监听一个主题对象,当主题对象状态发生变化时会通知所有观察者。

程序实例:公司里有两种上班时趁老板不在时偷懒的员工:看NBA的和看股票行情的,并且事先让老板秘书当老板出现时通知他们继续做手头上的工作。

程序特点:无

Python代码
  1. class Observer:  
  2.     def __init__(self, strname, strsub):  
  3.         self.name = strname  
  4.         self.sub = strsub  
  5.   
  6.     def Update(self):  
  7.         pass  
  8.   
  9.   
  10. class StockObserver(Observer):  
  11.     #no need to rewrite __init__()  
  12.     def Update(self):  
  13.         print "%s:%s,stop watching Stock and go on work!" % (self.name, self.sub.action)  
  14.   
  15.   
  16. class NBAObserver(Observer):  
  17.     def Update(self):  
  18.         print "%s:%s,stop watching NBA and go on work!" % (self.name, self.sub.action)  
  19.   
  20.   
  21. class SecretaryBase:  
  22.     def __init__(self):  
  23.         self.observers = []  
  24.   
  25.     def Attach(self, new_observer):  
  26.         pass  
  27.   
  28.     def Notify(self):  
  29.         pass  
  30.   
  31.   
  32. class Secretary(SecretaryBase):  
  33.     def Attach(self, new_observer):  
  34.         self.observers.append(new_observer)  
  35.   
  36.     def Notify(self):  
  37.         for p in self.observers:  
  38.             p.Update()  
  39.   
  40.   
  41. if __name__ == "__main__":  
  42.     p = Secretary()  
  43.     s1 = StockObserver("xh", p)  
  44.     s2 = NBAObserver("wyt", p)  
  45.     p.Attach(s1);  
  46.     p.Attach(s2);  
  47.     p.action = "WARNING:BOSS ";  
  48.     p.Notify()  
 

十一、抽象工厂模式

模式特点:提供一个创建一系列相关或相互依赖对象的接口,而无需指定它们的类。

程序实例:提供对不同的数据库访问的支持。

     IUser和IDepartment是两种不同的抽象产品,它们都有Access和SQL Server这两种不同的实现;IFactory是产生IUser和IDepartment的抽象工厂,根据具体实现(AccessFactory和SqlFactory)产生对应的具体的对象(CAccessUser与CAccessDepartment,或者CSqlUser与CSqlDepartment)。

代码特点:无

Python代码
  1. class IUser:  
  2.     def GetUser(self):  
  3.         pass  
  4.   
  5.     def InsertUser(self):  
  6.         pass  
  7.   
  8.   
  9. class IDepartment:  
  10.     def GetDepartment(self):  
  11.         pass  
  12.   
  13.     def InsertDepartment(self):  
  14.         pass  
  15.   
  16.   
  17. class CAccessUser(IUser):  
  18.     def GetUser(self):  
  19.         print "Access GetUser"  
  20.   
  21.     def InsertUser(self):  
  22.         print "Access InsertUser"  
  23.   
  24.   
  25. class CAccessDepartment(IDepartment):  
  26.     def GetDepartment(self):  
  27.         print "Access GetDepartment"  
  28.   
  29.     def InsertDepartment(self):  
  30.         print "Access InsertDepartment"  
  31.   
  32.   
  33. class CSqlUser(IUser):  
  34.     def GetUser(self):  
  35.         print "Sql GetUser"  
  36.   
  37.     def InsertUser(self):  
  38.         print "Sql InsertUser"  
  39.   
  40.   
  41. class CSqlDepartment(IDepartment):  
  42.     def GetDepartment(self):  
  43.         print "Sql GetDepartment"  
  44.   
  45.     def InsertDepartment(self):  
  46.         print "Sql InsertDepartment"  
  47.   
  48.   
  49. class IFactory:  
  50.     def CreateUser(self):  
  51.         pass  
  52.   
  53.     def CreateDepartment(self):  
  54.         pass  
  55.   
  56.   
  57. class AccessFactory(IFactory):  
  58.     def CreateUser(self):  
  59.         temp = CAccessUser()  
  60.         return temp  
  61.   
  62.     def CreateDepartment(self):  
  63.         temp = CAccessDepartment()  
  64.         return temp  
  65.   
  66.   
  67. class SqlFactory(IFactory):  
  68.     def CreateUser(self):  
  69.         temp = CSqlUser()  
  70.         return temp  
  71.   
  72.     def CreateDepartment(self):  
  73.         temp = CSqlDepartment()  
  74.         return temp  
  75.   
  76.   
  77. if __name__ == "__main__":  
  78.     factory = SqlFactory()  
  79.     user = factory.CreateUser()  
  80.     depart = factory.CreateDepartment()  
  81.     user.GetUser()  
  82.     depart.GetDepartment()  
 

十二、状态模式

 

模式特点:当一个对象的内在状态改变时允许改变其行为,这个对象看起来像是改变了其类。

程序实例:描述一个程序员的工作状态,当需要改变状态时发生改变,不同状态下的方法实现不同

代码特点:无

Python代码
  1. class State:  
  2.     def WirteProgram(self):  
  3.         pass  
  4.   
  5.   
  6. class Work:  
  7.     def __init__(self):  
  8.         self.hour = 9  
  9.         self.current = ForenoonState()  
  10.   
  11.     def SetState(self, temp):  
  12.         self.current = temp  
  13.   
  14.     def WriteProgram(self):  
  15.         self.current.WriteProgram(self)  
  16.   
  17.   
  18. class NoonState(State):  
  19.     def WriteProgram(self, w):  
  20.         print "noon working"  
  21.         if (w.hour < 13):  
  22.             print "fun."  
  23.         else:  
  24.             print "need to rest."  
  25.   
  26.   
  27. class ForenoonState(State):  
  28.     def WriteProgram(self, w):  
  29.         if (w.hour < 12):  
  30.             print "morning working"  
  31.             print "energetic"  
  32.         else:  
  33.             w.SetState(NoonState())  
  34.             w.WriteProgram()  
  35.   
  36.   
  37. if __name__ == "__main__":  
  38.     mywork = Work()  
  39.     mywork.hour = 9  
  40.     mywork.WriteProgram()  
  41.     mywork.hour = 14  
  42.     mywork.WriteProgram()  
 

十三、适配器模式

 

模式特点:将一个类的接口转换成为客户希望的另外一个接口。

程序实例:用户通过适配器使用一个类的方法。

代码特点:无

class Target:
    def Request():
        print "common request."

class Adaptee(Target):
    def SpecificRequest(self):
        print "specific request."

class Adapter(Target):
    def __init__(self,ada):
        self.adaptee = ada
    def Request(self):
        self.adaptee.SpecificRequest()

if __name__ == "__main__":
    adaptee = Adaptee()
    adapter = Adapter(adaptee)
    adapter.Request()

 

十四、备忘录模式

模式特点:在不破坏封装性的前提下捕获一个对象的内部状态,并在该对象之外保存这个状态,以后可以将对象恢复到这个状态。

程序实例:将Originator对象的状态封装成Memo对象保存在Caretaker内

代码特点:无

class Originator:
    def __init__(self):
        self.state = ""
    def Show(self):
        print self.state
    def CreateMemo(self):
        return Memo(self.state)
    def SetMemo(self,memo):
        self.state = memo.state

class Memo:
    state= ""
    def __init__(self,ts):
        self.state = ts

class Caretaker:
    memo = ""

if __name__ == "__main__":
    on = Originator()
    on.state = "on"
    on.Show()
    c = Caretaker()
    c.memo=on.CreateMemo()
    on.state="off"
    on.Show()
    on.SetMemo(c.memo)
    on.Show()

 

十五、组合模式

 

模式特点:将对象组合成成树形结构以表示“部分-整体”的层次结构

程序实例:公司人员的组织结构

代码特点:无

 

class Component:
    def __init__(self,strName):
        self.m_strName = strName
    def Add(self,com):
        pass
    def Display(self,nDepth):
        pass

class Leaf(Component):
    def Add(self,com):
        print "leaf can't add"
    def Display(self,nDepth):
        strtemp = ""
        for i in range(nDepth):
            strtemp=strtemp+"-"
        strtemp=strtemp+self.m_strName
        print strtemp

class Composite(Component):
    def __init__(self,strName):
        self.m_strName = strName
        self.c = []
    def Add(self,com):
        self.c.append(com)
    def Display(self,nDepth):
        strtemp=""
        for i in range(nDepth):
            strtemp=strtemp+"-"
        strtemp=strtemp+self.m_strName
        print strtemp
        for com in self.c:
            com.Display(nDepth+2)

if __name__ == "__main__":
    p = Composite("Wong")
    p.Add(Leaf("Lee"))
    p.Add(Leaf("Zhao"))
    p1 = Composite("Wu")
    p1.Add(Leaf("San"))
    p.Add(p1)
    p.Display(1);

 

十六、迭代器模式

模式特点:提供方法顺序访问一个聚合对象中各元素,而又不暴露该对象的内部表示

说明:这个模式没有写代码实现,原因是使用Python的列表和for ... in list就能够完成不同类型对象聚合的迭代功能了。

 

十七、单例模式

 

模式特点:保证类仅有一个实例,并提供一个访问它的全局访问点。

说明:     为了实现单例模式费了不少工夫,后来查到一篇博文对此有很详细的介绍,而且实现方式也很丰富,通过对代码的学习可以了解更多Python的用法。以下的代码出自GhostFromHeaven的专栏,地址:http://blog.csdn.net/ghostfromheaven/article/details/7671853。不过正如其作者在Python单例模式终极版所说:

我要问的是,Python真的需要单例模式吗?我指像其他编程语言中的单例模式。

答案是:不需要!

因为,Python有模块(module),最pythonic的单例典范。

模块在在一个应用程序中只有一份,它本身就是单例的,将你所需要的属性和方法,直接暴露在模块中变成模块的全局变量和方法即可!

 

#-*- encoding=utf-8 -*-
print '----------------------方法1--------------------------'
#方法1,实现__new__方法
#并在将一个类的实例绑定到类变量_instance上,
#如果cls._instance为None说明该类还没有实例化过,实例化该类,并返回
#如果cls._instance不为None,直接返回cls._instance
class Singleton(object):
    def __new__(cls, *args, **kw):
        if not hasattr(cls, '_instance'):
            orig = super(Singleton, cls)
            cls._instance = orig.__new__(cls, *args, **kw)
        return cls._instance

class MyClass(Singleton):
    a = 1

one = MyClass()
two = MyClass()

two.a = 3
print one.a
#3
#one和two完全相同,可以用id(), ==, is检测
print id(one)
#29097904
print id(two)
#29097904
print one == two
#True
print one is two
#True

print '----------------------方法2--------------------------'
#方法2,共享属性;所谓单例就是所有引用(实例、对象)拥有相同的状态(属性)和行为(方法)
#同一个类的所有实例天然拥有相同的行为(方法),
#只需要保证同一个类的所有实例具有相同的状态(属性)即可
#所有实例共享属性的最简单最直接的方法就是__dict__属性指向(引用)同一个字典(dict)
#可参看:http://code.activestate.com/recipes/66531/
class Borg(object):
    _state = {}
    def __new__(cls, *args, **kw):
        ob = super(Borg, cls).__new__(cls, *args, **kw)
        ob.__dict__ = cls._state
        return ob

class MyClass2(Borg):
    a = 1

one = MyClass2()
two = MyClass2()

#one和two是两个不同的对象,id, ==, is对比结果可看出
two.a = 3
print one.a
#3
print id(one)
#28873680
print id(two)
#28873712
print one == two
#False
print one is two
#False
#但是one和two具有相同的(同一个__dict__属性),见:
print id(one.__dict__)
#30104000
print id(two.__dict__)
#30104000

print '----------------------方法3--------------------------'
#方法3:本质上是方法1的升级(或者说高级)版
#使用__metaclass__(元类)的高级python用法
class Singleton2(type):
    def __init__(cls, name, bases, dict):
        super(Singleton2, cls).__init__(name, bases, dict)
        cls._instance = None
    def __call__(cls, *args, **kw):
        if cls._instance is None:
            cls._instance = super(Singleton2, cls).__call__(*args, **kw)
        return cls._instance

class MyClass3(object):
    __metaclass__ = Singleton2

one = MyClass3()
two = MyClass3()

two.a = 3
print one.a
#3
print id(one)
#31495472
print id(two)
#31495472
print one == two
#True
print one is two
#True

print '----------------------方法4--------------------------'
#方法4:也是方法1的升级(高级)版本,
#使用装饰器(decorator),
#这是一种更pythonic,更elegant的方法,
#单例类本身根本不知道自己是单例的,因为他本身(自己的代码)并不是单例的
def singleton(cls, *args, **kw):
    instances = {}
    def _singleton():
        if cls not in instances:
            instances[cls] = cls(*args, **kw)
        return instances[cls]
    return _singleton

@singleton
class MyClass4(object):
    a = 1
    def __init__(self, x=0):
        self.x = x

one = MyClass4()
two = MyClass4()

two.a = 3
print one.a
#3
print id(one)
#29660784
print id(two)
#29660784
print one == two
#True
print one is two
#True
one.x = 1
print one.x
#1
print two.x

 

十八、桥接模式

 

模式特点:将抽象部分与它的实现部分分离,使它们都可以独立地变化。

程序实例:两种品牌的手机,要求它们都可以运行游戏和通讯录两个软件,而不是为每个品牌的手机都独立编写不同的软件。

代码特点:虽然使用了object的新型类,不过在这里不是必须的,是对在Python2.2之后“尽量使用新型类”的建议的遵从示范。

class HandsetSoft(object):
    def Run(self):
        pass

class HandsetGame(HandsetSoft):
    def Run(self):
        print "Game"

class HandsetAddressList(HandsetSoft):
    def Run(self):
        print "Address List"

class HandsetBrand(object):
    def __init__(self):
        self.m_soft = None
    def SetHandsetSoft(self,temp):
        self.m_soft= temp
    def Run(self):
        pass

class HandsetBrandM(HandsetBrand):
    def Run(self):
        if not (self.m_soft == None):
            print "BrandM"
            self.m_soft.Run()

class HandsetBrandN(HandsetBrand):
    def Run(self):
        if not (self.m_soft == None):
            print "BrandN"
            self.m_soft.Run()

if __name__ == "__main__":
    brand = HandsetBrandM()
    brand.SetHandsetSoft(HandsetGame())
    brand.Run()
    brand.SetHandsetSoft(HandsetAddressList())
    brand.Run() 

 

 

十九、命令模式

模式特点:将请求封装成对象,从而使可用不同的请求对客户进行参数化;对请求排队或记录请求日志,以及支持可撤消的操作。

程序实例:烧烤店有两种食物,羊肉串和鸡翅。客户向服务员点单,服务员将点好的单告诉大厨,由大厨进行烹饪。

代码特点:注意在遍历列表时不要用注释的方式删除,否则会出现bug。bug示例程序附在后面,我认为这是因为remove打乱了for迭代查询列表的顺序导致的。

class Barbucer:
    def MakeMutton(self):
        print "Mutton"
    def MakeChickenWing(self):
        print "Chicken Wing"

class Command:
    def __init__(self,temp):
        self.receiver=temp
    def ExecuteCmd(self):
        pass

class BakeMuttonCmd(Command):
    def ExecuteCmd(self):
        self.receiver.MakeMutton()

class ChickenWingCmd(Command):
    def ExecuteCmd(self):
        self.receiver.MakeChickenWing()

class Waiter:
    def __init__(self):
        self.order =[]
    def SetCmd(self,command):
        self.order.append(command)
        print "Add Order"
    def Notify(self):
        for cmd in self.order:
            #self.order.remove(cmd)
            #lead to a bug
            cmd.ExecuteCmd()
            

if __name__ == "__main__":
    barbucer=Barbucer()
    cmd=BakeMuttonCmd(barbucer)
    cmd2=ChickenWingCmd(barbucer)
    girl=Waiter()
    girl.SetCmd(cmd)
    girl.SetCmd(cmd2)
    girl.Notify()

在for中remove会导致bug的展示代码:

c=[0,1,2,3]
for i in c:
    print i
    c.remove(i)

#output:
#0
#2

 

二十、职责链模式

模式特点:使多个对象都有机会处理请求,从而避免发送者和接收者的耦合关系。将对象连成链并沿着这条链传递请求直到被处理。

程序实例:请假和加薪等请求发给上级,如果上级无权决定,那么递交给上级的上级。

代码特点:无

Python代码  
  1. class Request:  
  2.     def __init__(self, tcontent, tnum):  
  3.         self.content = tcontent  
  4.         self.num = tnum  
  5.   
  6.   
  7. class Manager:  
  8.     def __init__(self, temp):  
  9.         self.name = temp  
  10.   
  11.     def SetSuccessor(self, temp):  
  12.         self.manager = temp  
  13.   
  14.     def GetRequest(self, req):  
  15.         pass  
  16.   
  17.   
  18. class CommonManager(Manager):  
  19.     def GetRequest(self, req):  
  20.         if (req.num >= and req.num < 10):  
  21.             print "%s handled %d request." % (self.name, req.num)  
  22.         else:  
  23.             self.manager.GetRequest(req)  
  24.   
  25.   
  26. class MajorDomo(Manager):  
  27.     def GetRequest(self, req):  
  28.         if (req.num >= 10):  
  29.             print "%s handled %d request." % (self.name, req.num)  
  30.   
  31.   
  32. if __name__ == "__main__":  
  33.     common = CommonManager("Zhang")  
  34.     major = MajorDomo("Lee")  
  35.     common.SetSuccessor(major)  
  36.     req = Request("rest", 33)  
  37.     common.GetRequest(req)  
  38.     req2 = Request("salary", 3)  
  39.     common.GetRequest(req2)  
 

 

二十一、中介者模式

模式特点:用一个对象来封装一系列的对象交互,中介者使各对象不需要显示地相互引用,从而使耦合松散,而且可以独立地改变它们之间的交互。

程序实例:两个对象通过中介者相互通信

代码特点:无

 

class Mediator:
    def Send(self,message,col):
        pass

class Colleague:
    def __init__(self,temp):
        self.mediator = temp

class Colleague1(Colleague):
    def Send(self,message):
        self.mediator.Send(message,self)
    def Notify(self,message):
        print "Colleague1 get a message:%s" %message

class Colleague2(Colleague):
    def Send(self,message):
        self.mediator.Send(message,self)
    def Notify(self,message):
        print "Colleague2 get a message:%s" %message

class ConcreteMediator(Mediator):
    def Send(self,message,col):
        if(col==col1):
            col2.Notify(message)
        else:
            col1.Notify(message)

if __name__ == "__main__":
    m =ConcreteMediator()
    col1 = Colleague1(m)
    col2 = Colleague1(m)
    m.col1=col1
    m.col2=col2
    col1.Send("How are you?");
    col2.Send("Fine.");

 

二十二、享元模式

 

模式特点:运用共享技术有效地支持大量细粒度的对象。

程序实例:一个网站工厂,根据用户请求的类别返回相应类别的网站。如果这种类别的网站已经在服务器上,那么返回这种网站并加上不同用户的独特的数据;如果没有,那么生成一个。

代码特点:为了展示每种网站的由用户请求的次数,这里为它们建立了一个引用次数的字典。

      之所以不用Python的sys模块中的sys.getrefcount()方法统计引用计数是因为有的对象可能在别处被隐式的引用,从而增加了引用计数。 

import sys

class WebSite:
    def Use(self):
        pass

class ConcreteWebSite(WebSite):
    def __init__(self,strName):
        self.name = strName
    def Use(self,user):
        print "Website type:%s,user:%s" %(self.name,user)

class UnShareWebSite(WebSite):
    def __init__(self,strName):
        self.name = strName
    def Use(self,user):
        print "UnShare Website type:%s,user:%s" %(self.name, user)

class WebFactory:
    def __init__(self):
        test = ConcreteWebSite("test")
        self.webtype ={"test":test}
        self.count = {"test":0}
    def GetWeb(self,webtype):
        if webtype not in self.webtype:
            temp = ConcreteWebSite(webtype)
            self.webtype[webtype] = temp
            self.count[webtype] =1
        else:
            temp = self.webtype[webtype]
            self.count[webtype] = self.count[webtype]+1
        return temp
    def GetCount(self):
        for key in self.webtype:
            #print "type: %s, count:%d" %(key,sys.getrefcount(self.webtype[key]))
            print "type: %s, count:%d " %(key,self.count[key])

if __name__ == "__main__":
    f = WebFactory()
    ws=f.GetWeb("blog")
    ws.Use("Lee")
    ws2=f.GetWeb("show")
    ws2.Use("Jack")
    ws3=f.GetWeb("blog")
    ws3.Use("Chen")
    ws4=UnShareWebSite("TEST")
    ws4.Use("Mr.Q")
    print f.webtype
    f.GetCount()

 

二十三、解释器模式

 

模式特点:给定一个语言,定义它的文法的一种表示,并定义一个解释器,这个解释器使用该表示来解释语言中的句子。

程序实例:(只是模式特点的最简单示范)

代码特点:无

class Context:
    def __init__(self):
        self.input=""
        self.output=""

class AbstractExpression:
    def Interpret(self,context):
        pass

class Expression(AbstractExpression):
    def Interpret(self,context):
        print "terminal interpret"

class NonterminalExpression(AbstractExpression):
    def Interpret(self,context):
        print "Nonterminal interpret"

if __name__ == "__main__":
    context= ""
    c = []
    c = c + [Expression()]
    c = c + [NonterminalExpression()]
    c = c + [Expression()]
    c = c + [Expression()]
    for a in c:
        a.Interpret(context)

 

二十四、访问者模式

 

模式特点:表示一个作用于某对象结构中的各元素的操作。它使你可以在不改变各元素的类的前提下定义作用于这些元素的新操作。

程序实例:对于男人和女人(接受访问者的元素,ObjectStructure用于穷举这些元素),不同的遭遇(具体的访问者)引发两种对象的不同行为。

代码特点:无

# -*- coding: UTF-8 -*-
class Person:
    def Accept(self,visitor):
        pass

class Man(Person):
    def Accept(self,visitor):
        visitor.GetManConclusion(self)

class Woman(Person):
    def Accept(self,visitor):
        visitor.GetWomanConclusion(self)

class Action:
    def GetManConclusion(self,concreteElementA):
        pass
    def GetWomanConclusion(self,concreteElementB):
        pass

class Success(Action):
    def GetManConclusion(self,concreteElementA):
        print "男人成功时,背后有个伟大的女人"
    def GetWomanConclusion(self,concreteElementB):
        print "女人成功时,背后有个不成功的男人"

class Failure(Action):
    def GetManConclusion(self,concreteElementA):
        print "男人失败时,闷头喝酒,谁也不用劝"
    def GetWomanConclusion(self,concreteElementB):
        print "女人失败时,眼泪汪汪,谁也劝不了"


class ObjectStructure:
    def __init__(self):
        self.plist=[]
    def Add(self,p):
        self.plist=self.plist+[p]
    def Display(self,act):
        for p in self.plist:
            p.Accept(act)

if __name__ == "__main__":
    os = ObjectStructure()
    os.Add(Man())
    os.Add(Woman())
    sc = Success()
    os.Display(sc)
    fl = Failure()
    os.Display(fl)

 

转载于:https://www.cnblogs.com/wangqingyi/articles/3863009.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值