标签:style blog io ar color os 使用 sp on
单例模式也称作为单子模式,更多的也叫做单体模式。为软件设计中较为简单但是最为常用的一种设计模式。
1 var single = (function(){ 2 var unique; 3 4 function getInstance(){ 5 if( unique === undefined ){ 6 unique = new Construct(); 7 } 8 return unique; 9 } 10 11 function Construct(){ 12 // ... 生成单例的构造函数的代码 13 } 14 15 return { 16 getInstance : getInstance 17 } 18 })();
标签:style blog io ar color os 使用 sp on
原文地址:http://www.cnblogs.com/angelfan/p/4151107.html