訪問者模式(python)

來源:互聯網
上載者:User

訪問者模式:表示一個作用於某對象結構中的各元素的操作。它可以使你在不改變各元素的類的前提下定義作用於這些元素的新操作。

訪問者模式適用於資料結構相對穩定基於該資料結構的操作需要經常擴充的系統。因為該模式的優點就是增加新的操作很容易。

#encoding=utf-8##by panda#訪問模式def printInfo(info):    print unicode(info, 'utf-8').encode('gbk')#基本資料結構:class Person():    def Accept(self, visitor):        pass    class Man(Person):    type = '男人'    def Accept(self, visitor):        visitor.GetManConclusion(self)class Woman(Person):    type = '女人'    def Accept(self, visitor):        visitor.GetWomanConclusion(self)#基於資料結構的操作class Action():    def GetManConclusion(self, person):        pass    def GetWomanConclusion(self, person):        passclass Success(Action):    type = '成功'    def GetManConclusion(self, person):        printInfo('%s %s時,背後多半有一個偉大的女人' %(person.type, self.type))    def GetWomanConclusion(self, person):        printInfo('%s %s時,背後大多有一個不成功的男人' %(person.type, self.type))class Failing(Action):    type = '失敗'    def GetManConclusion(self, person):        printInfo('%s %s時,悶頭喝酒,誰也不用勸' %(person.type, self.type))    def GetWomanConclusion(self, person):        printInfo('%s %s時,眼淚汪汪,誰也勸不了' %(person.type, self.type))class Love(Action):    type = '戀愛'    def GetManConclusion(self, person):        printInfo('%s %s時,凡是不懂也要裝懂' %(person.type, self.type))    def GetWomanConclusion(self, person):        printInfo('%s %s時,遇事懂也裝作不懂' %(person.type, self.type))#對象結構類:遍曆資料結構的操作class ObjectStructure:    elements = []    def Attach(self, element):        self.elements.append(element)        def Detach(self, element):        self.elements.remove(element)        def Display(self, visitor):        for e in self.elements:            e.Accept(visitor)    def clientUI():    o = ObjectStructure()    o.Attach(Man())    o.Attach(Woman())        o.Display(Success())    o.Display(Failing())    o.Display(Love())    returnif __name__ == '__main__':    clientUI();

類圖

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.