Head First设计模式C++实现-Decorator模式
摘要:
#ifndef DECORATOR_H_ #define DECORATOR_H_ #include using namespace std; class Beverage { public: virtual string GetDescription() { ... 阅读全文
posted @ 2008-12-04 22:02 张云临 阅读(92) 评论(0) 推荐(0) 编辑