zoukankan      html  css  js  c++  java
  • 设计模式---行为型设计模式【策略模式】

    策略模式:它定义了算法家族,分别封装起来,让它们之间可以互相替换
    此模式让算法的变化,不会影响到使用算法的客户。

    策略模式是一种定义一系列算法的方法,从概念上来看,所有这些算法完成的都是相同的
    工作,只是实现不同,它可以以相同的方式调用所有的算法,减少了各种算法类与使用
    算法类之间的耦合。
    策略模式的Strategy类层次为Context定义了一些列的可供重用的算法或行为。继承有助于析
    取出这些算法中的公共功能。
    策略模式的优点是简化了单元测试,因为每个算法都有自己的类,可以通过自己的接口单独测试。
    用法:
    测试模式就是用来封装算法的,但在实践中,我们发现可以用它来封装几乎任何类型的规则
    只要在分析过程中听到需要在不同时间应用不同的业务规则,就可以考虑使用策略模式处理这种
    变化的可能性。

    import math
    
    class CashStrategy:
        '''
        收费算法策略类
        '''
        def algorithm_cash(self, money):
            raise NotImplementedError
    
    class CashNormal(CashStrategy):
        '''
        正常收费算法
        '''
        def algorithm_cash(self, money):
            return money
    
    class CashRebate(CashStrategy):
        '''
        打折收费算法
        '''
        def __init__(self, rate):
            self.rate = rate
        def algorithm_cash(self, money):
            return money * self.rate
    
    class CashReturn(CashStrategy):
        '''
        返利收费算法,初始化时必须要输入返利条件和返利值,
        比如满300返100,则money_condition为300,money_return为100
        '''
        def __init__(self, money_condition, money_return):
            self.money_condition = money_condition
            self.money_return = money_return
        def algorithm_cash(self, money):
            result = money
            if money >= self.money_condition:
                result = money - math.floor(money / self.money_condition) * self.money_return
            return result
    
    class Context:
        '''
        上下文,维护一个对Strategy策略对象的引用
        '''
        def __init__(self, type):
            cash_strategy = None
            if type == '正常收费':
                cash_strategy = CashNormal()
            elif type == '满300返100':
                cash_strategy = CashReturn(300, 100)
            elif type == '打8折':
                cash_strategy = CashRebate(0.8)
            self.cash_strategy = cash_strategy
        def get_result(self, money):
            return self.cash_strategy.algorithm_cash(money)
    
    
    if __name__ == '__main__':
        c = Context('满300返100')
        result = c.get_result(800)
        print(result)
    '''
    600
    '''
    策略模式例子

     第一版:Context里:包装算法对象,Context的方法:包装算法对象的方法

    class Algorithm:
        def get_result(self, money):
            raise NotImplementedError()
    class AlgorithmNormal(Algorithm):
        '''
        正常收费算法
        '''
        def get_result(self, money):
            return money
    
    class AlgorithmRebate(Algorithm):
        '''
        打折收费算法
        '''
        def __init__(self, rate):
            self.rate = rate
        def get_result(self, money):
            return money * self.rate
    
    class Context:
        def __init__(self, algorithm_obj):
            self.algorithm_obj = algorithm_obj
        def get_pay(self, money):
            return self.algorithm_obj.get_result(money)
    
    if __name__ == '__main__':
        normal = Context(AlgorithmNormal())
        pay = normal.get_pay(300)
        print(pay)
    
        rebate = Context(AlgorithmRebate(0.8))
        pay = rebate.get_pay(300)
        print(pay)

    第二版:Context里:包装算法类,Context的方法:包装算法类的静态方法,注意参数用 *args **kwargs

    class AlgorithmNormal:
        '''
        正常收费算法
        '''
        @staticmethod
        def get_result(money):
            return money
    
    class AlgorithmRebate:
        '''
        打折收费算法
        '''
        @staticmethod
        def get_result(money, rate):
            return money * rate
    
    class Context:
        def __init__(self, algorithm_cls):
            self.algorithm_cls = algorithm_cls
        def get_pay(self, *args, **kwargs):
            return self.algorithm_cls.get_result(*args, **kwargs)
    
    if __name__ == '__main__':
        normal = Context(AlgorithmNormal)
        pay = normal.get_pay(300)
        print(pay)
    
        rebate = Context(AlgorithmRebate)
        pay = rebate.get_pay(300, 0.8)
        print(pay)

    第三版:Context里:包装算法方法本身,Context的方法里:包装算法方法的调用,注意参数用 *args **kwargs

    def get_result_normal(money):
            return money
    
    def get_result_rebate(money, rate):
            return money * rate
    
    class Context:
        def __init__(self, algorithm_func):
            self.algorithm_func = algorithm_func
        def get_pay(self, *args, **kwargs):
            return self.algorithm_func(*args, **kwargs)
    
    if __name__ == '__main__':
        normal = Context(get_result_normal)
        pay = normal.get_pay(300)
        print(pay)
    
        rebate = Context(get_result_rebate)
        pay = rebate.get_pay(300, 0.8)
        print(pay)

    第四版:Context里:包装算法方法本身,取消Context的方法,客户端直接调用Context的对象

    def get_result_normal(money):
            return money
    
    def get_result_rebate(money, rate):
            return money * rate
    
    class Context:
        def __init__(self, algorithm_func):
            self.algorithm_func = algorithm_func
    
    if __name__ == '__main__':
        normal = Context(get_result_normal)
        pay = normal.algorithm_func(300)
        print(pay)
    
        rebate = Context(get_result_rebate)
        pay = rebate.algorithm_func(300, 0.8)
        print(pay)
  • 相关阅读:
    《代码整洁之道》阅读笔记(三)
    pyqt5知识
    软件开发的生命周期
    软件过程与管理CMMI
    pyQt5练习(三)
    pyQt5练习(二)
    《代码整洁之道》阅读笔记(二)
    pyQt5练习(一)
    Android Studio错误:Connect to 127.0.0.1:1080 [/127.0.0.1] failed: Connection refused: connect
    AndroidStudio:Minimum supported Gradle version is XXX Current version is XXX
  • 原文地址:https://www.cnblogs.com/staff/p/11653539.html
Copyright © 2011-2022 走看看