14.js继承

1.类式继承
缺点:1.如果父类中有引用类型的字段,会被子类的各个实例共享,一个改动则会影响别的实例
2.不能借用父类构造器产生子类需要的字段

//声明父类
function Super(){
    this.book=['js','html']
}
//声明子类
function Sub(){

}
//继承
Sub.prototype=new Super()

//实例化
let instance1=new Sub()
let instance2=new Sub()
instance1.book.push("C++")
console.log(instance1);
console.log(instance2);

2.构造函数式继承
缺点:不能使用父类原型链上的共有方法

//声明父类
function Super(){
    this.book=['js','html']
}
//声明子类
function Sub(){
    //继承
    Super.call(this)
    this.other="other"
}
//实例化
let instance1=new Sub()
let instance2=new Sub()
instance1.book.push("C++")
console.log(instance1);
console.log(instance2);

3.组合继承

//声明父类
function Super(){
    this.book=['js','html']
}
//声明子类
function Sub(){
    Super.call(this)
    this.other="other"
}
Sub.prototype=new Super()


//实例化
let instance1=new Sub()
let instance2=new Sub()
instance1.book.push("C++")
console.log(instance1);
console.log(instance2);

4.寄生组合式继承

//声明父类
function Super(){
    this.book=['js','html']
}
//声明子类
function Sub(){
    Super.call(this)
    this.other="other"
}
//继承函数
function extend(subClass,superClass){
    function F(){}
    F.prototype=superClass.prototype
    let p=new F()
    subClass.prototype=p
    p.constructor=subClass
}
//继承
extend(Sub,Super)

//实例化
let instance1=new Sub()
let instance2=new Sub()
instance1.book.push("C++")
console.log(instance1);
console.log(instance2);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值