hand first 设计模式 - 工厂模式
2009-09-17 00:00:00 来源:WEB开发网台南比萨
Java代码
public class TaiNanPiazz extends Piazz {
public TaiNanPiazz(){
this.setName("TaiNanPiazz");
this.setPrice(19.96);
}
@Override
public void step3() {
System.out.println("this is TaiNanPiazz step3");
}
@Override
public void make() {
// TODO Auto-generated method stub
step3();
step2();
step1();
}
}
测试类
Java代码
public class Test {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
PiazzStore chinaStore = new ChinaPiazzStore();
PiazzStore taiwanStore = new TaiWanPiazzStore();
Piazz huanPiazz = chinaStore.getPiazz("china_huan");
System.out.println(huanPiazz);
Piazz taizhongPiazz = taiwanStore.getPiazz("taiwan_tainan");
System.out.println(taizhongPiazz);
}
- ››设计模式:工厂方法模式
- ››设计模式一 - Simple Factory, Factory Method, A...
- ››设计模式重构应用---Decorator模式
- ››设计模式重构应用---Template Method模式
- ››hand first 设计模式 - 装饰者模式
- ››hand first 设计模式 - 工厂模式
- ››hand first 设计模式 - 抽象工厂模式
- ››hand first 设计模式 - 单例模式
- ››hand first 设计模式 - 命令模式
- ››hand first 设计模式 -适配器模式
- ››hand first 设计模式 -外观模式
- ››hand first 设计模式 -模板方法模式
更多精彩
赞助商链接