解譯器模式(python)

來源:互聯網
上載者:User

解譯器模式:給定一個語言,定義它文法的一種表示,並定義一個解譯器。這個解譯器使用該‘表示’來解釋語言中的句子。

應用情境:如果一種特定類型的問題發生的頻率足夠高,那麼可能就值得將該問題的各個執行個體表述為一個簡單語言中的句子。這樣就可以構建一個解譯器,該解譯器通過解釋這些句子來解決該問題。比如“正常運算式”。

#encoding=utf-8##by panda#解譯器模式def printInfo(info):    print unicode(info, 'utf-8').encode('gbk'),#上下文類:演奏內容class PlayContext():    text = None    PlayText = None#抽象運算式類class Expression():    def Interpret(self, context):        if len(context.PlayText) == 0:            return        else:            playKey = context.PlayText[0:1]            context.PlayText = context.PlayText[2:]            tmp = context.PlayText.index(' ') #找出第一個空格出現的位置            playValue = context.PlayText[0:tmp]            context.PlayText = context.PlayText[tmp+1:]            self.Excute(playKey,playValue)        def Excute(self,playKey,playValue):        pass#音高class Pitch(Expression):    pitch = None    def Excute(self, key, value):        value = int(value)        if value == 1:            self.pitch = '低音'        elif value == 2:            self.pitch = '中音'        elif value == 3:            self.pitch = '高音'        printInfo(self.pitch)        #音符class Note(Expression):    Notes = {    'C':1,        'D':2,    'E':3,        'F':4,        'G':5,        'A':6,        'B':7,        }    note = None    def Excute(self, key, value):             self.note = self.Notes[key]        printInfo('%d' % self.note)def clientUI():    context = PlayContext()    context.PlayText = "O 2 E 0.5 G 0.5 A 3 E 0.5 G 0.5 D 3 E 0.5 G 0.5 A 0.5 O 3 C 1 O 2 A 0.5 G 1 C 0.5 E 0.5 D 3 "    expression = None;    while(len(context.PlayText) > 0):        str = context.PlayText[0:1];        if(str == 'O'):            expression = Pitch()        elif(str == 'C' or str == 'D' or str == 'E' or str == 'F' or str == 'G' or str == 'A' or str == 'B' or str == 'P'):            expression = Note()        expression.Interpret(context)                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.