var util = require('util');
var Beverage = function(){
var description = "Unkown Beverage"
this.getDescription = function(){
return description;
}
}
function Espresso(){
Beverage.call(this);
this.description = "Espresso";
}
util.inherits(Espresso, Beverage);
Espresso.prototype.cost = function(){
return 1.99;
}
function HouseBlend(){
Beverage.call(this);
this.description = "House Blend Coffee";
}
util.inherits(HouseBlend, Beverage);
HouseBlend.prototype.cost = function(){
return .89;
}
function Mocha(beverage){
this.beverage = beverage;
};
Mocha.prototype.getDescription = function(){
return this.beverage.getDescription() + ", Mocha";
}
Mocha.prototype.cost = function(){
return 0.20 + this.beverage.cost();
}
function Whip(beverage){
this.beverage = beverage;
};
Whip.prototype.getDescription = function(){
return this.beverage.getDescription() + ", Whip";
}
Whip.prototype.cost = function(){
return 0.40 + this.beverage.cost();
}
var beverage = new Espresso();
console.log(beverage.getDescription() + " $" + beverage.cost());
var beverage2 = new HouseBlend();
beverage2 = new Mocha(beverage2);
beverage2 = new Mocha(beverage2);
beverage2 = new Whip(beverage2);
console.log(beverage2.getDescription() + " $" + beverage2.cost());
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有