Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 557 Bytes

File metadata and controls

17 lines (15 loc) · 557 Bytes

代码结构

- src
  - Expression.py # 定义表达式抽象类或接口
  - AddExpression.py # 具体表达式,实现或继承抽象表达式接口
  - SubtractExpression.py # 具体表达式,实现或继承抽象表达式接口
  - VarExpression.py.py # 具体表达式,实现或继承抽象表达式接口
  - Context.py # 构建可执行环境上下文,表达式在执行上下文解释
  - Application.py # 客户端调用,使用表达式

测试验证

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