hand first 设计模式 - 命令模式
2009-09-17 00:00:00 来源:WEB开发网关灯操作
Java代码
public class LightOffCommand implements Command {
private Light light;
public LightOffCommand(Light light){
this.light = light;
}
@Override
public void execute() {
// TODO Auto-generated method stub
light.off();
}
@Override
public void undo() {
// TODO Auto-generated method stub
light.on();
}
}
电视
Java代码
public class TV implements Switch {
private String name;
public TV(String name) {
this.name = name;
}
@Override
public void off() {
// TODO Auto-generated method stub
System.out.println(name + " is off");
}
@Override
public void on() {
// TODO Auto-generated method stub
System.out.println(name + " is on");
}
}
//开电视
Java代码
public class TVOnCommand implements Command {
private TV tv;
public TVOnCommand(TV tv) {
this.tv = tv;
}
@Override
public void execute() {
// TODO Auto-generated method stub
tv.on();
}
@Override
public void undo() {
// TODO Auto-generated method stub
tv.off();
}
}
- ››设计模式:工厂方法模式
- ››设计模式一 - Simple Factory, Factory Method, A...
- ››设计模式重构应用---Decorator模式
- ››设计模式重构应用---Template Method模式
- ››hand first 设计模式 - 装饰者模式
- ››hand first 设计模式 - 工厂模式
- ››hand first 设计模式 - 抽象工厂模式
- ››hand first 设计模式 - 单例模式
- ››hand first 设计模式 - 命令模式
- ››hand first 设计模式 -适配器模式
- ››hand first 设计模式 -外观模式
- ››hand first 设计模式 -模板方法模式
更多精彩
赞助商链接