通过prototype实现继承

[code]/* Vehicle 的构造函数 */
function Vehicle() {}

/* 定义并初始化Vehicle的属性 */
Vehicle.prototype.wheelCount = 4;
Vehicle.prototype.curbWeightInPounds = 4000;

/* 定义Vehicle的功能 */
Vehicle.prototype.refuel = function() {
return "Refueling Vehicle with regular 87 octane gasoline";
}

Vehicle.prototype.mainTasks = function() {
return "Driving to work, school, and the grocery store";
}


/* SportsCar 的构造函数 */
function SportsCar() {}
/* 将SportsCar的父对象指定为Vehicle */
SportsCar.prototype = new Vehicle();

SportsCar.prototype.curbWeightInPounds = 3000;

SportsCar.prototype.refuel = function() {
return "Refueling SportsCar with premium 94 octane gasoline";
}

SportsCar.prototype.mainTasks = function() {
return "Spirited driving, looking good, driving to the beach";
}

/* CementTruck 的构造函数 */
function CementTruck(){}

CementTruck.prototype = new Vehicle();

CementTruck.prototype.wheelCount = 10;

CementTruck.prototype.curbWeightInPounds = 12000;

CementTruck.prototype.refuel = function() {
return "Refueling CementTruck with diesel fuel";
}

CementTruck.prototype.mainTasks = function() {
return "Arrive at construction site, extend boom, deliver cement";
}
[/code]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值