class Parent {
constructor () {
console.log('parent')
}
do () {
console.log('我会说话')
}
}
class Child extends Parent {
constructor () {
// 使用 super.method(...) 调用父方法。
// 使用 super(...) 调用父构造函数(仅在 constructor 函数中)。
super()
console.log('child')
super.do()
}
}
new Child()