“Singleton -Funktion JavaScript” Code-Antworten

Singleton -Funktion JavaScript

var SingletonFactory = (function(){
    function SingletonClass() {
        //do stuff
    }
    var instance;
    return {
        getInstance: function(){
            if (instance == null) {
                instance = new SingletonClass();
                // Hide the constructor so the returned object can't be new'd...
                instance.constructor = null;
            }
            return instance;
        }
   };
})();

Ashamed Antelope

Implementieren Sie Singleton JavaScript

var SingletonFactory = (function(){
    function SingletonClass() {
        //do stuff
    }
    var instance;
    return {
        getInstance: function(){
            if (instance == null) {
                instance = new SingletonClass();
                // Hide the constructor so the returned object can't be new'd...
                instance.constructor = null;
            }
            return instance;
        }
   };
})();
Hilarious Hamerkop

Ähnliche Antworten wie “Singleton -Funktion JavaScript”

Fragen ähnlich wie “Singleton -Funktion JavaScript”

Weitere verwandte Antworten zu “Singleton -Funktion JavaScript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen