欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js 的 getter和setter

程序员文章站 2024-02-20 16:06:40
...

    js中没有私有变量(对比java),所以js想实现类似的私有变量,只能通过类似的_[attrName](给变量名加上下滑线),然后编写get和set方法,(python 实现类似,不过在解析器里会在给变量名添加自定义的名称

var a = {        
        _name:"张三",
        get name(){
            return this._name;
        },
        set name(val) {
           this._name = val;
        }
        name: {
           get: function(){
              return this._name
           },
           set: function(name){
             this._name = name
           }
        }
}


a.name
张三
a.name = '李四'
李四

get和set的函数其实是属于对象的属性,属性名就是函数名,所以如果_name 写成 name,会报

VM8231:3 Uncaught RangeError: Maximum call stack size exceeded