溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

class與prototype

發(fā)布時(shí)間:2020-07-21 13:14:38 來源:網(wǎng)絡(luò) 閱讀:260 作者:yum123 欄目:開發(fā)技術(shù)

創(chuàng)建實(shí)例對象:

ES5中常用的構(gòu)造函數(shù)模式

function?Person(name){
????this.name?=?name;
????
????this.getName?=?function(){
????????return?this.name
????}
}

class與prototype


ES6 通過class定義類

class?Person{
????constructor(name){
????????this.name?=?name;
????}

????getName(){
????????return?this.name;
????};
}

class與prototype

1、類的所有方法都定義在類的prototype屬性上面

2、類和原型上的方法、屬性都是不可枚舉的,所以只能通過Object.getOwnPropertyNames(Person/Person.prototype)獲取其屬性、方法名來遍歷;

? ? ?注:1)for-in,? Object.keys(),? Object.getOwnPropertyNames三種方式遍歷對象

? ? ? ? ? ? 2)for-in和Object.keys()只能獲取可枚舉的屬性、方法


參考:

http://es6.ruanyifeng.com/#docs/class


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI