上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 88 下一页
摘要: 意图:动态地给一个对象添加一些额外的职责。class Component{public: Component() {} virtual ~Component() {} virtual void Operation() = 0;};class ConcreteComponent: public Component{public: ConcreteComponent() {} ~ConcreteComponent() {} void Operation() { cout<<"ConcreteComponent::Ope... 阅读全文
posted @ 2013-05-05 14:41 Leung文 阅读(102) 评论(0) 推荐(0) 编辑
上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 88 下一页