zoukankan      html  css  js  c++  java
  • 行为模式-责任链模式

     责任链模式的内容:使多个对象都有机会处理请求,从而避免请求的发送者和接收者之间的耦合关系。将这些对象连成一条链并沿着这条链传递该请求,直到有一个对象处理它为止。责任链的角色有抽象处理者、具体处理者和客户端。

    
    
    from abc import ABCMeta, abstractmethod

    # 抽象处理着
    class Handler(metaclass=ABCMeta):

    @abstractmethod
    def handle_leave(self, day):
    pass

    # 具体处理者

    class GeneraManger(Handler):
    def handle_leave(self, day):
    if day <= 10:
    print('总经理准假%d' % day)
    else:
    print("get out")

    # 具体的处理者
    class DepartmentManger(Handler):

    def __init__(self):
    self.next = GeneraManger()

    def handle_leave(self, day):
    if day > 3 and day < 10:
    print('部门经理准假%d' % day)
    else:
    self.next.handle_leave(day)


    class PerjectManger(Handler):
    def __init__(self):
    self.next = DepartmentManger()

    def handle_leave(self, day):
    if day <= 3:
    print('项目经理准假%d' % day)
    else:
    self.next.handle_leave(day)

    # 客户端,高层代码
    PerjectManger().handle_leave(5)
     

     使用场景:有多个对象可以处理一个请求,哪个对象处理由运行时决定;在不明确接收者的情况下,向多个对象中的一个提交一个请求。优点是降低耦合度,一个对象无需知道是其它哪一个对象处理其请求。

  • 相关阅读:
    codevs2034 01串2
    codevs2622数字序列( 连续子序列最大和O(n)算法)
    codevs3008加工生产调度(Johnson算法)
    codevs1955光纤通信(并查集)
    codevs4203山区建小学
    codevs2618核电站问题
    常用端口
    ntp时间同步服务器
    date linux系统校正时间
    用户切换
  • 原文地址:https://www.cnblogs.com/wzy23/p/13648714.html
Copyright © 2011-2022 走看看