解释器模式:
给定一中语言,定义它的文法的一种表示,并定义一个解释器,这个解释器使用该表示来解释语言中的句子。
// 表达式类
public abstract class Expression {
public void interpret(PlayContext context) {
if (context.getContext().length() == 0) {
return;
} else {
String playKey = context.getContext().substring(0, 1);
context.setContext(context.getContext().substring(2));
double playValue = Double.parseDouble(context.getContext().substring(0, context.getContext().indexOf(" ")));
context.setContext(context.getContext().substring(context.getContext().indexOf(" ") + 1));
excute(playKey, playValue);
}
}
public abstract void excute(String key, double value);
}
// 音符类
public class Note extends Expression {
@Override
public void excute(String key, double value) {
String note = null;
if (key.equals("C"))
note = "1";
if (key.equals("D"))
note = "2";
if (key.equals("E"))
note = "3";
if (key.equals("F"))
note = "4";
if (key.equals("G"))
note = "5";
if (key.equals("A"))
note = "6";
if (key.equals("B"))
note = "7";
System.out.print(" " + note + " ");
}
}
// 音阶类
public class Scale extends Expression {
@Override
public void excute(String key, double value) {
String scale = null;
int intKey = (int) value;
if (intKey == 1)
scale = "low scale";
if (intKey == 2)
scale = "mid scale";
if (intKey == 3)
scale = "high scale";
System.out.print(" " + scale + " ");
}
}
// 演奏内容类
public class PlayContext {
private String context;
public String getContext() {
return context;
}
public void setContext(String context) {
this.context = context;
}
}
// 客户端
public class InterpreterMain {
public static void main(String[] args) {
PlayContext context = new PlayContext();
String content = "O 2 E 0.5 G 0.5 A 3 E 0.5 G 0.5 D 3 E 0.5 G 0.5 A 0.5 O 3 C 1 O 2 A 0.5 G 1 C 0.5 E 0.5 D 3 ";
context.setContext(content);
Expression exp = null;
try {
while (context.getContext().length() > 0) {
String str = context.getContext().substring(0, 1);
if (str.equals("O")) {
exp = new Scale();
} else {
exp = new Note();
}
exp.interpret(context);
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
用解释器模式就如同你开发了一个编程语言或脚本给自己或别人用。用了解释器模式就意味着很容易改变和拓展文法,因为该模式使用类来表示文法规则,你可以使用继承来改变和拓展该文法。
分享到:
相关推荐
大话设计模式总结.pdf大话设计模式总结.pdf大话设计模式总结.pdf大话设计模式总结.pdf大话设计模式总结.pdf
大话设计模式 完整设计模式介绍
设计模式之《大话设计模式》.pptx
设计模式参考《大话设计模式》 工厂简单模式 创造型模式 工厂方法模式 抽象工厂模式 原型模式 建造者模式 单例模式 结构型模式 队列模式 桥接模式 组合模式 装饰模式 外观模式 享元模式 代理模式 行为模式(类行为...
Android之大话设计模式——:抽象工厂模式借鉴.pdf
《大话设计模式》C++实现-design-patterns-cpp
读书笔记:大话设计模式C++
android之大话设计模式.pdf
读书笔记:程杰版的《大话设计模式》的C++版本代码
《大话设计模式》对各种设计模式,做简要归纳(原创)
二十三种设计模式二十三种设计模式二十三种设计模式
树懒自己整理的大话设计模式的修行笔记,对程序设计有很大的帮助,主要是以自己学习的习惯整理的!
读书笔记:设计模式大话设计模式
大话设计模式之外观模式 经典代码 C#类
【Java】《大话设计模式》java版实现。包括简单工厂模式,策略模式,装饰模式,代理模式,工厂方法模式,原型模式,模板方法模式等
android之大话设计模式整理.pdf
大话设计模式源代码之简单工厂模式 经典代码
单例模式是软件设计模式中的一种经典模式,它在许多场景下被广泛使用,尤其是在需要全局唯一实例的情况下。本文将深入探讨单例模式的概念、作用、实现方式以及其在实际编程中的应用。 单例模式的核心思想是确保一个...
读书笔记:设计模式学习《大话设计模式》
NULL 博文链接:https://helei050.iteye.com/blog/2086309