js子类型重写的注意点
1、有时候子类型需要重写超类型的方法。如果子类型重写的方法写在更换原型之前,继承的超类型方法会覆盖子类型定义的方法,重写无效。
2、子类型的重写方法需要在更换原型后。
实例
// 父构造函数function Father() {
this.name = "father"
this.house = "cottage"
}
// 原型方法
Father.prototype.alertName = function () {
console.log(this.name)
}
// 子构造函数
function Children() {
this.name = "children"
}
// 实现继承:子构造函数的原型对象=父构造函数的实例对象
Children.prototype = new Father()
// 在替换原型后,重写方法
Children.prototype.alertName = function () {
console.log('在替换原型之后,重写方法有效')
}
// 创建子实例
let c = new Children()
c.alertName()// 在替换原型之后,重写方法有效
以上就是js子类型重写的注意点,希望对大家有所帮助。更多js学习指路:js教程
推荐操作环境:windows7系统、jquery3.2.1版本,DELL G3电脑。
以上是 js子类型重写的注意点 的全部内容, 来源链接: utcz.com/z/546264.html