首頁 > web前端 > js教程 > JS的get和set使用範例_基礎知識

JS的get和set使用範例_基礎知識

WBOY
發布: 2016-05-16 16:59:07
原創
1030 人瀏覽過

巧用get和set,能夠直接操作物件屬性實現讀寫,可以極大的提高程式效率,給出一個典型範例:

複製程式碼 程式碼如下:

var test = {
_Name : null,
_Age : 0,

//_Name的讀寫
set name(name) {this._Name = name;},
get name() {return this._Name;},
//_Age的讀寫
set age(age) {this._Age = age;},
get age() {return this._Age;}
}

alert(test.name " " test.age);//bull 0
test. name = 'lucy';
test.age = 20;
alert(test.name " " test.age);//lucy 20
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板