抽象工厂模式
2016-11-17 21:43:52 12 举报
工厂模式之抽象工厂模式
作者其他创作
大纲/内容
具体产品B1
String getName(){retrun \"productB1\";}
类
String getName(){return \"productB2\";}
具体工厂A
productA create1(){retrun new productA1();}productB create2(){retrun new prodyctB1();}
《interface》抽象产品A
String getName()
《interface》抽象工厂factoryy
productA create1();productB create2();
《interface》抽象产品B
具体工厂B
productA create1(){return new productA2():}productB create2(){return new productB2();}
具体产品A1
String getName(){return \"productA1\";}
具体产品A2
String getName(){retrun \"productA2\";}
0 条评论
回复 删除
下一页