2013年5月7日

抽象工厂模式 Abstract Factory Pattern C++

摘要: 抽象工厂模式的C++实现版本。由于本人是初学C++,而且也是刚接触设计模式不久,所以非常希望有高手能指正程序中存在的问题,非常感谢。抽象工厂类: 1 AbstractFactory.h 2 3 #ifndef _ABSTRACT_FACTORY_H 4 #define _ABSTRACT_FACTORY_H 5 6 #include "Tax.h" 7 #include "Bonus.h" 8 9 //this is the abstract factory class10 //there could be multiple abstract produ 阅读全文

posted @ 2013-05-07 23:36 亲爱的西西哥 阅读(205) 评论(1) 推荐(0)

导航