摘要:
/**********************************设计模式--适配器2模式实现*C++语言*Author:WangYong*Blog:http://www.cnblogs.com/newwy********************************/#include <iostream>using namespace std;class Target{ pub... 阅读全文
摘要:
/**********************************设计模式--适配器1模式实现*C++语言*Author:WangYong*Blog:http://www.cnblogs.com/newwy********************************/#include <iostream>using namespace std;class Target{ pub... 阅读全文
摘要:
/**********************************设计模式--桥接模式实现*C++语言*Author:WangYong*Blog:http://www.cnblogs.com/newwy********************************/#include <iostream>using namespace std;class AbstractionIm... 阅读全文
摘要:
/**********************************设计模式--组成模式实现*C++语言*Author:WangYong*Blog:http://www.cnblogs.com/newwy********************************/#include <iostream>#include <vector>using namespace ... 阅读全文
摘要:
/**********************************设计模式--命令实现*C++语言*Author:WangYong*Blog:http://www.cnblogs.com/newwy********************************/#include <iostream>using namespace std;class Reciever{ publi... 阅读全文
摘要:
/**********************************设计模式--单件实现*C++语言*Author:WangYong*Blog:http://www.cnblogs.com/newwy********************************/#include <iostream>using namespace std;class Singleton{publi... 阅读全文
摘要:
/**********************************设计模式--生成器实现*C++语言*Author:WangYong*Blog:http://www.cnblogs.com/newwy********************************/#include <iostream>using namespace std;class Product{ publi... 阅读全文
摘要:
阅读全文
摘要:
/**********************************设计模式--抽象工厂实现*C++语言*Author:WangYong*Blog:http://www.cnblogs.com/newwy********************************/#include <iostream>using namespace std;class AbstractProdu... 阅读全文