亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

JS中子類的實例屬性為什么可以訪問父類的實例屬性?

JS中子類的實例屬性為什么可以訪問父類的實例屬性?

慕仙森 2018-10-19 17:11:34
class Person {  constructor(name, age) {    this.name = name    this.age = age  }    test() { }}class Student extends Person {  constructor(name, age, no) {    super(name, age)    this.no = no  }   say() {    console.log(`name: ${this.name}, age: ${this.age}, no: ${this.no}`)  }}let student = new Student('mrcode', 21, '11403080435')student.say()student可以訪問test方法,這點可以理解。 但是為什么通過Student中的this可以訪問到父類中的name, age呢? ES6中的class只是原型鏈的語法糖。 原型鏈上的對象都是原型。 哪里來的name, age屬性呢?
查看完整描述

1 回答

  • 1 回答
  • 0 關注
  • 720 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號