看到有好多方法实现继承,什么组合式继承、寄生式继承,有的还有好多缺点,感觉下面这样或者es6都能很好实现继承啊,为什么还会有以上那些方法function Parent(name) {
this.name = name}
Parent.prototype.getName = function() {
console.log(this.name)
}function Child(name) {
Parent.call(this, name)
this.*** = ***
///
}
Child.prototype = Object.create(Parent.prototype)
child.prototype.fn = function***
///
- 2 回答
- 0 关注
- 123 浏览
添加回答
举报
0/150
提交
取消