摘要: #ifndef __DECORATOR__#define __DECORATOR__#include #include using namespace std;//人class Person{public: Person(string strName) { m_strName = strName; } Person(){} virtual void show() { coutshow(); }};class TShirts : public Finery{public: virtual void show() {... 阅读全文
posted @ 2013-10-22 23:09 解放1949 阅读(148) 评论(0) 推荐(0) 编辑