- 使用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
暂无评论内容