在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
解读typescript中 super关键字的用法 传统的js,使用prototype实现父、子类继承. class Animal {
constructor() {
console.log('animal')
}
get() {
console.log("吃饭")
}
}
class Monkey extends Animal {
constructor() {
console.log("child---monkey")
super()
}
get() {
console.log("不吃饭")
}
init() {
super.get()
}
}
var animal = new Monkey();
animal.init();
|
请发表评论