- 论坛徽章:
- 2
|
回复 #1 meng_jian 的帖子
不知道楼主使用什么语言。
如果是C/C++, 在一个很普通的程序里面就有可能无意识的用上这3种模式。
它们也许和《设计模式》中严格描述出的样子有点偏差。
但有含有其精髓。
-------- 观察者--------
int atexit( void (*fn)(void) ); /* #include <stdlib.h> */
new_handler set_new_handler (new_handler new_p) throw(); // #include <new>
unexpected_handler set_unexpected (unexpected_handler f) throw(); // #include <exception>
terminate_handler set_terminate (terminate_handler f) throw(); // #include <exception>
这绝对是百分之百的观察者模式。
-------- 代理--------
class std:: vector<bool>; // #include <vector>
template<size_t n>
class std::bitset; // #include <bitset>
这也是百分之百的代理模式。
类似的, 许多智能指针, deque的iterator,带有写时拷贝机制的string, 都是代理模式。
-------- 单例 --------
单例的用途是什么?
创建单一(或者更广泛的, 限制数量的)实例。
并有一个全局访问点。
stdin, stdout, stderr
std:: cout, std:: cin, std:: cerr, std:: clog
std:: wcout, std:: wcin, std:: wcerr, std:: wclog
程序运行环境将创建上述的单一对象(保证不会创建两个), 并有全局访问点。
它们算单例吗?
如果非要说它们是全局变量, 而不是单例,那:
char * getenv ( const char * name ); /* #include <stdlib.h> */
char * setlocale ( int category, const char * locale ); /* #include <locale.h> */
没有(或者说看不到)全局变量了吧?
显然, 它们背后依然有全局变量, 只是隐藏在函数下而已。
单例与全局变量的界限本来就很模糊。
它们算单例吗?
如果还要说, 上面的2个例子无法子类化, 那:
locale::global( local("chs" ); // #include <locale>
C++程序运行时环境会创建一个单一的全局的locale。
提供一个访问点:
static locale global (const locale& loc);
并且可以用用户自定义的locale子类去替换(或者替换某个facet)。
这个算单例吗?
嗯, 也许不算, 因为它是替换, 而不是创建。
无法在创建时使用某个子类。
单例是设计模式中无聊模式之一 ……
[ 本帖最后由 OwnWaterloo 于 2009-4-26 18:05 编辑 ] |
|