上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 88 下一页
摘要: 意图:提供一个通过拷贝已存在对象进行新对象创建的接口。class Prototype{public: Prototype() {} virtual ~Prototype() {} virtual Prototype* Clone() = 0;};class ConcretePrototype: public Prototype{public: ConcretePrototype(const string& str) { this->content = str; } ConcretePrototype(const Concret... 阅读全文
posted @ 2013-05-04 21:34 Leung文 阅读(103) 评论(0) 推荐(0) 编辑
上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 88 下一页