美文网首页
闭包实现属性私有化

闭包实现属性私有化

作者: 王牡丹爱写作 | 来源:发表于2019-06-03 20:04 被阅读0次
    function AA(p,pr){
                var pr = pr==undefined?12:pr;
                this.p=p;
                this.setp=function(){
                    this.p=pr;
                }
                this.changePr=function(t){
                    pr=t;
                }
                this.sayPr=function(){
                    console.log(pr);
                }
            }
    

    相关文章

      网友评论

          本文标题:闭包实现属性私有化

          本文链接:https://www.haomeiwen.com/subject/noqhxctx.html