es5 温故而知新 简单继承示例

// 矩形(构造器/父类)
function Rectangle (height, width) {
	this.height = height;
	this.width = width;
}

// 获取面积
Rectangle.prototype.getArea = function () {
	return this.height * this.width;
}

// 正方形(将继承矩形)
function Square (size) {
	this.height = size
	this.width = size
}

// 继承的重中之重语法,其实也可以用:Square.prototype = Object.create(Rectangle.prototype)
Square.prototype = Object.create(Rectangle.prototype);
// 构造函数
Square.prototype.constructor = Square;

var square = new Square(6);
// 调用继承的矩形类的获取面积函数
console.log(square.getArea()) // 36

转载于:https://www.cnblogs.com/CyLee/p/9859254.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值