python設計模式第九天【策略模式】

來源:互聯網
上載者:User

標籤:str   method   imp   平滑   ace   bubuko   object   pytho   模式   

1. 定義

對一系列演算法進行封裝,為所有演算法定義一個抽象的演算法介面,可以平滑的進行演算法切換

 

2. 策略模式的UML圖

 

3.代碼實現

#!/usr/bin/env python#! _*_ coding:UTF-8 _*_from abc import ABCMeta, abstractmethodclass Context(object):    def setStrategy(self, strategy):        self.__strategy = strategy    def operation(self):        self.__strategy.algorithmInterface()class Strategy(object):    @abstractmethod    def algorithmInterface(self):        passclass ConcreteStrategyA(Strategy):    def algorithmInterface(self):        print "strategy A"class ConcreteStrategyB(Strategy):    def algorithmInterface(self):        print "strategy B"if __name__ == "__main__":    context = Context()    concreteStrategyA = ConcreteStrategyA()    concreteStrategyB = ConcreteStrategyB()    context.setStrategy(concreteStrategyA)    context.operation()    context.setStrategy(concreteStrategyB)    context.operation()

結果:

/Users/liudaoqiang/PycharmProjects/numpy/venv/bin/python /Users/liudaoqiang/Project/python_project/day09_strategy/strategy_test.pystrategy Astrategy BProcess finished with exit code 0

 

python設計模式第九天【策略模式】

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.