Skip to content

Latest commit

 

History

History

python

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

代码结构

- src
  - Command.py # 命令抽象类或接口,定义基础命令接口
  - BuyCommand.py # 具体命令类之一,继承或实现抽象接口
  - SellCommand.py # 具体命令类之一,继承或实现抽象接口
  - CommandInvoker.py # 命令调用类,通过关联命令来执行命令的调用
  - StockReceiver.py # 命令模式真正的执行类,由command来调用

测试验证

$ cd ./command-pattern/python
$ python test/test.py