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

设计模式-单例模式

时间:2019-01-22 21:44:27      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:UNC   设计   ons   设计模式-单例模式   code   func   需要   ret   cto   

        class Test{//只需要new 一次 并且在内部完成
            constructor(name){
                this.name = name
            }
            showName(){
                alert(`name: ${this.name}`)
            }
        }

        Test.aa = (function(){//定义一个静态方法 在内部new 出上面的实例
            let a
            return function(){
                if(!a){
                    a = new Test('chenchen')
                }
                return a
            }
        })()

        let obj1 = Test.aa()
        obj1.showName()

        let obj2 = Test.aa()
        obj2.showName()

        console.log('obj1 === obj2:', obj1 === obj2 )//true 

        console.log('----分割线----')

        let obj3 = new Test('chengcheng')
        obj3.showName()

        console.log('obj1 === obj3:', obj1 === obj3 ) //false 多次new出来的实例对象不等

设计模式-单例模式

标签:UNC   设计   ons   设计模式-单例模式   code   func   需要   ret   cto   

原文地址:https://www.cnblogs.com/yzyh/p/10305925.html

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