码迷,mamicode.com
首页 > 其他好文 > 详细

装饰模式

时间:2017-09-16 17:19:32      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:衣服   rsh   col   com   rate   self   开始   .com   功能   

 

可以将所需的功能,按正确的顺序串联起来进行控制
动态的给对象增加功能,与使用子类相比装饰模式更为灵活
 
 
代码示例
class Person(object):
    def __init__(self,name):
        self.name = name
    def show(self):
        print("%s 的装扮" %self.name)
class Finery(Person):
    component = None
    def decorate(self,component):
        self.component = component
    def show(self):
        if self.component != None:
            self.component.show()
class WearTShirts(Finery):
    def __init__(self):
        pass
    def show(self):
        print("T恤")
        self.component.show()
class WearBigTrouser(Finery):
    def __init__(self):
        pass
    def show(self):
        print("垮裤")
        self.component.show()
class WearSuit(Finery):
    def __init__(self):
        pass
    def show(self):
        print("西装")
        self.component.show()
class WearLeatherShoes(Finery):
    def __init__(self):
        pass
    def show(self):
        print("皮鞋")
        self.component.show()
f1 = Person("han")
# 找衣服
px = WearLeatherShoes()
xz = WearSuit()
tx = WearTShirts()
# 开始穿衣服,装饰过程
tx.decorate(f1)
px.decorate(tx)
xz.decorate(px)
xz.show()

 

 

装饰模式

标签:衣服   rsh   col   com   rate   self   开始   .com   功能   

原文地址:http://www.cnblogs.com/hanqian/p/7531512.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!