ES6学习(12)class中的getter/setter

  1. 使用getter和setter
class Animal {
  _name = 'dog';
  get name(){
      return this._name;
  }
  set name(val){
    if(val){
      this._name = val;
    }else{
      return false;
    }
  }
}
let cat = new Animal();
cat.name = 'cat';
console.log(cat);

【信息由网络或者个人提供,如有涉及版权请联系COOY资源网邮箱处理】

© 版权声明
THE END
喜欢就支持一下吧
点赞7 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容