码迷,mamicode.com
首页 > 其他好文 > 详细

单例模式 (3)

时间:2014-09-04 23:32:10      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   div   cti   sp   log   

 var SingletonTester = (function(){
        function singleton(options){
            options = options || {};
            this.name = ‘Jackey‘;
            this.age = options.age || 24;
        }
        var instance;
        var _static = {
            name:‘Jackey‘,
            getInstance:function(options){
                if(!instance){
                    instance = new singleton(options);
                }
                return instance;
            }
        };
        return _static;
    })();
    var test = SingletonTester.getInstance({age : 20})
    console.log(test.age);

 

单例模式 (3)

标签:style   blog   color   io   ar   div   cti   sp   log   

原文地址:http://www.cnblogs.com/lihaozhou/p/3956978.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!