标签:
单例模式的核心是确保只有一个实例,并提供全局访问。
function xx(name){};
Singleton.getInstance = (function(){
var instance = null;
return function(name){
if(!instance){
instance = new xx(name);
}
return instance;
}
})();
标签:
原文地址:http://www.cnblogs.com/SLchuck/p/4869710.html