posts

Apr 05, 2020

💼命令Command设计模式在设计API时的运用

Estimated Reading Time: 1 minutes (3 words)

你是否使用过一些类似于这样的API?

    

命令模式是一种行为设计模式,它可将请求转换为一个包含于请求相关的所有信息的独立对象。改装换让你根据不同的请求将方法参数化,延迟请求执行或将其放入队列中,且能实现可撤销操作。- https://refactoringguru.cn/design-patterns/command