1. 单例模式
单例模式的核心是确保只有一个实例,并提供全局访问。
function xx(name){};
Singleton.getInstance = (function(){
var instance = null;
return function(name){
if(!instance){
instance = new xx(name);
}
return instance;
}
})();
时间: 2024-11-02 11:23:02
单例模式的核心是确保只有一个实例,并提供全局访问。
function xx(name){};
Singleton.getInstance = (function(){
var instance = null;
return function(name){
if(!instance){
instance = new xx(name);
}
return instance;
}
})();