js中继承的几种方法

第一种方法 ( 使用call方法 )

想要实现继承,就在子构造函数的内部调用 call 方法,改变父函数里面的 this 指向。

function Father(uname, age) {
	this.uname = uname;
	this.age = age
}
function Son(uname, age) {
	Father.call(this, uname, age);
}

第二种方法(使用原型链继承)

function Father(uname, age) {
	this.uname = uname;
	this.age = age
}
function Son(uname, age) {
	
}
Son.prototype = new Father();
Son.prototype.constructor = Son;

第三种方法,使用 extends 关键字

使用 es6 中类的继承的关键字 extends
当super作为函数调用时,代表父类的构造函数。(ES6要求子类的构造函数必须执行一次super函数,并且只能用在子类的构造函数中)
super代表的是父类Father 的构造函数,返回的却是子类Son 的实例,即super内部的this指的是子类son的实例,因此在这里super()相当于Father.prototype.constructor.call(this)

class Father {
    constructor(x, y) {
        this.x = x;
        this.y = y;
    }
    sum() {
        console.log(this.x + this.y);

    }
}
class Son extends Father {
    constructor(x, y) {
        super(x, y); //调用了父类中的构造函数
    }
}
var son = new Son(1, 2);
var son1 = new Son(11, 22);
son.sum();
son1.sum();
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值