DesignPatterns에서 BehavioralPatterns의 하나.
미니언어를 사용해서 문제를 해결, 언어를 재귀적으로 정의하고, 구문Tree를 구축하고, Parsing하는 패턴
Structure
Example
자동차를 움직이는 미니언어 InterpreterMiniLanguage.java
- go / right / left 로 이동하고 repeat 할수 있다.
이 문법을 BNF로 표기하면,
<program> ::= program <command list>
<command list> ::= <command>* end
<command> ::= <repeat command> | <primitive command>
<repeat command> ::= repeat <number> <command list>
<primitive command> ::= go | right | left
관련정보
InterpreterPattern InterpreterPattern