なんちゃってSingleton
Hoge.Instance = null; Hoge.getInstance = function(){ if ( Hoge.Instance === null ){ Hoge.Instance = new Hoge(); } return Hoge.Instance; } function Hoge(){ this.a = 'hoge'; }
アクセス制御ができないから意味無いけどね。
Hoge.Instance = null; Hoge.getInstance = function(){ if ( Hoge.Instance === null ){ Hoge.Instance = new Hoge(); } return Hoge.Instance; } function Hoge(){ this.a = 'hoge'; }
アクセス制御ができないから意味無いけどね。