Heim  >  Artikel  >  Web-Frontend  >  Eine Erklärung des Template-Methodenmusters von js

Eine Erklärung des Template-Methodenmusters von js

不言
不言Original
2018-07-14 17:23:011718Durchsuche

Dieser Artikel stellt hauptsächlich die Erklärung des Vorlagenmethodenmusters von js vor. Er hat einen gewissen Referenzwert. Jetzt können Freunde in Not darauf zurückgreifen.

function Beverage() {}

Beverage.prototype.boilWater = function() {
	console.log("把水煮沸");
}

Beverage.prototype.brew = function() {
	throw new Error('子类必须重写brew方法');
}

Beverage.prototype.pourInCup = function() {
	throw new Error('子类必须重写pourInCup方法');
}

Beverage.prototype.addCondiments = function() {
	throw new Error('子类必须重写addCondiments方法');
}

Beverage.prototype.init = function() {
	this.boilWater();
	this.brew();
	this.pourInCup();
	this.addCondiments();
}

function Coffee() {}

Coffee.prototype = new Beverage();

Coffee.prototype.brew = function() {
	console.log("用沸水冲泡咖啡");
}

Coffee.prototype.pourInCup = function() {
	console.log("把咖啡倒进杯子");
}

Coffee.prototype.addCondiments = function() {
	console.log("加糖和牛奶");
}

var coffee = new Coffee();
// coffee的原型Coffee没有init方法, 
// 顺着原型链委托给父类的Beverage原型上的init方法
coffee.init();

console.log("-------------------------");

function Tea() {}

Tea.prototype = new Beverage();

Tea.prototype.brew = function() {
	console.log("用沸水浸泡茶叶");
}

Tea.prototype.pourInCup = function() {
	console.log("把茶水倒进杯子");
}

Tea.prototype.addCondiments = function() {
	console.log("加柠檬");
}

var tea = new Tea();
tea.init();

Das Obige ist der gesamte Inhalt dieses Artikels. Ich hoffe, dass er für das Lernen aller hilfreich ist PHP chinesische Website!

Verwandte Empfehlungen:

So verwenden Sie Font Awesome, um kleine Symbole über Vue.js zu implementieren

Informationen zur Verwendung des js-Array-Filters

Das obige ist der detaillierte Inhalt vonEine Erklärung des Template-Methodenmusters von js. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn