摘要: GOOD:整体和部分可以被一致对待(如WORD中复制一个文字、一段文字、一篇文章都是一样的操作)#ifndef __COMPOSITE_MODEL__#define __COMPOSITE_MODEL__ #include #include #include using namespace std;class Component{public: string m_strName; Component(string strName) { m_strName = strName; } virtual void add(Component* com) = ... 阅读全文
posted @ 2013-11-15 00:27 解放1949 阅读(169) 评论(0) 推荐(0) 编辑