C# 设计模式:责任链
原文英文,约400词,阅读约需2分钟。发表于: 。The Chain of Responsibility pattern is used to pass a request along a chain of handlers. Each handler decides whether to process the request or pass it to the next handler in the chain. It’s...
责任链模式用于将请求在处理者链中传递。每个处理者决定是否处理或传递请求,适用于多步骤请求处理,如费用审批。例子中,经理可批1000美元内,主管可批5000美元内,总裁可批任何金额。超出限额则传递给下一个处理者。