繁体   English   中英

如何使用IIFE模块模式在JavaScript中编写单例类?

[英]How to write a singleton class in javascript using IIFE module pattern?

如何使用IIFE模块模式在javascript中编写单例类? 您能举个例子吗?

我尝试过类似的操作,但对于x2.getInstance失败。 根据我的理解,x2.getInstance()应该获得与x1.getInstance()相同的实例。 如何使用IIFE模块模式实现此目标?

var x = (function(){

    var instance ;
    var vconstructor = function(){};
    //vconstructor.prototype.method1 = function(){}
    //vconstructor.prototype.method2 = function(){}
    vconstructor.prototype.getInstance = function(){
        if (!instance) {
          console.log('critical section');
          instance = somefunc();
          return instance;
    }
    };  

    function somefunc(){
        return { "key1": "value1"};
    }

    return vconstructor;
})();

var x1 = new x();
console.log('1.');
console.log(x1 instanceof x);
console.log(x1);
console.log('2.' + x1.getInstance());  
var x2 = new x();
console.log(x2);
console.log('x2: ' + x2.getInstance());   

好心提醒。

您可以尝试以下方法:

var Singleton = (function () {
    var instance;

    function createInstance() {
        var object = new Object("I am the instance");
        return object;
    }

    return {
        getInstance: function () {
            if (!instance) {
                instance = createInstance();
            }
            return instance;
        }
    };
})();

function run() {

    var instance1 = Singleton.getInstance();
    var instance2 = Singleton.getInstance();

    alert("Same instance? " + (instance1 === instance2));  
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM