欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Javascript设计模式之装饰者模式详解篇

程序员文章站 2023-11-23 15:52:52
一、前言: 装饰者模式(decorator pattern):在不改变原类和继承的情况下动态扩展对象功能,通过包装一个对象来实现一个新的具有原对象相同接口的新的对象。...

一、前言:

装饰者模式(decorator pattern):在不改变原类和继承的情况下动态扩展对象功能,通过包装一个对象来实现一个新的具有原对象相同接口的新的对象。

装饰者模式的特点:

1. 在不改变原对象的原本结构的情况下进行功能添加。

2. 装饰对象和原对象具有相同的接口,可以使客户以与原对象相同的方式使用装饰对象。

3. 装饰对象中包含原对象的引用,即装饰对象是真正的原对象经过包装后的对象。

二、javascript装饰者模式详解:

描述:

装饰者模式中,可以在运行时动态添加附加功能到对象中。当处理静态类时,这可能是一个挑战。在javascript中,由于对象是可变的,因此,添加功能到对象中的过程本身并不是问题。

装饰者模式的一个比较方便的特征在于其预期行为的可定制和可配置特性。可以从仅具有一些基本功能的普通对象开始,然后从可用装饰资源池中选择需要用于增强普通对象的哪些功能,并且按照顺序进行装饰,尤其是当装饰顺序很重要的时候。

实现装饰者模式的其中一个方法是使得每个装饰者成为一个对象,并且该对象包含了应该被重载的方法。每个装饰者实际上继承了目前已经被前一个装饰者进行增强后的对象。每个装饰方法在“继承的对象”上调用了同样的方法并获取其值,此外它还继续执行了一些操作。

先上实例1:

//需要装饰的类(函数)
function macbook() {
 this.cost = function () {
  return 1000;
 };
} 
//计算商品的包装费
function packagingfee(macbook) {
 this.cost = function () {
  return macbook.cost() + 75;
 };
}
//计算商品的运费
function freight(macbook) {
 this.cost = function () {
  return macbook.cost() + 300;
 };
} 
//计算商品的保险费用
function insurance(macbook) {
 this.cost = function () {
  return macbook.cost() + 250;
 };
}
// 用法
var mymacbook = new insurance(new freight(new packagingfee(new macbook())));
console.log(mymacbook.cost());//1625

我们简单的分析下上面的代码,上面的代码中,一共定义了四个函数(其中一个需要修饰的函数,三个用于修饰的函数)。

然后,声明一个变量mymacbook指向new出来的insurance对象,insurance对象的形参指向new出来的freight对象,freight对象的形参指向new出来的packagingfee对象,packagingfee对象的形参指向new出来的macbook对象。

接下来,调用mymacbook的cost方法。从上面的分析,我们可以得出 mymacbook.cost()的值等于(freight对象的cost方法+250),freight对象的cost方法等于(packagingfee对象的cost方法+300),packagingfee对象的cost方法等于(macbook对象的cost方法+75)。

所以最终的结果是:mymacbook.cost()的值 = 250 + (300 + (75 + 1000)) = 1625。

// 用法
var mymacbook = new insurance(new freight(new packagingfee(new macbook())));
console.log(mymacbook.cost());//1625 
//上面的代码等价于下面拆分后的代码,或许拆分后代码你更能看出前后的逻辑性
var macbook = new macbook();
var package = new packagingfee(macbook);
var freight = new freight(package);
var mymacbook = new insurance(freight);
//当然,如果你不想声明这么多变量(macbook、package、freight),只用一个变量也是可以的
var macbook = new macbook();
macbook = new packagingfee(macbook);
macbook = new freight(macbook);
var mymacbook = new insurance(macbook);

再看看实例2:

function concreteclass() {
 this.performtask = function () {
  this.pretask();
  console.log('doing something');
  this.posttask();
 };
}
function abstractdecorator(decorated) {
 this.performtask = function () {
  decorated.performtask();
 };
}
function concretedecoratorclass(decorated) {
 this.base = abstractdecorator;
 this.base(decorated);// add performtask method
 decorated.pretask = function () {
  console.log('pre-calling..');
 };
 decorated.posttask = function () {
  console.log('post-calling..');
 };
}
var concrete = new concreteclass();
var decorator1 = new concretedecoratorclass(concrete);
decorator1.performtask();
//pre-calling..
//doing something
//post-calling..

实例2实际上和实例1是非常类似的,我们来简单分析下吧。首先,实例2中定义了三个函数,然后声明了两个变量concrete和decorator1,最后调用了decorator1的performtask方法。

粗看一眼,concretedecoratorclass里面好像并没有performtask方法。我们先来分析下面的两行代码:

var concrete = new concreteclass(); //声明一个变量concrete指向new出来的concreteclass对象
var decorator1 = new concretedecoratorclass(concrete); //声明一个变量decorator1指向new出来的concretedecoratorclass对象,并传入变量concrete作为形参

然后,我们再来逐行分析下concretedecoratorclass函数里面的代码:

this.base = abstractdecorator; //定义一个当前对象(decorator1)的base属性,并指向函数abstractdecorator
this.base(decorated); //调用base属性指向的函数,也就是调用abstractdecorator函数,同时传入形参decorated,形参decorated指向new出来的concreteclass对象

说到这里,好像还是没有分析出concretedecoratorclass函数里面有performtask方法,重点是看 "this"!

concretedecoratorclass函数中的this指向new出来的concretedecoratorclass对象(也就是和decorator1指向同一个对象);

abstractdecorator函数里面的this关键是看哪个对象来调用这个函数,this就指向哪个对象(从代码 “this.base = abstractdecorator; this.base(decorated);” 中我们可以看出是new出来的concretedecoratorclass对象在调用abstractdecorator函数),所以abstractdecorator函数里面的this指向new出来的concretedecoratorclass对象(也和decorator1指向同一个对象)。

总结下来,我们会发现,在上面的代码中,不管是concretedecoratorclass函数里面的this,还是abstractdecorator函数里面的this,都指向new出来的concretedecoratorclass对象。

所以,当我们执行decorator1.performtask()时,它会继续执行匿名函数中的代码(decorated.performtask();),匿名函数中的decorated形参指向new出来的concreteclass对象,并执行该对象的performtask方法。

最后看看实例3:

var tree = {};
tree.decorate = function () {
 console.log('make sure the tree won\'t fall');
}; 
tree.getdecorator = function (deco) {
 tree[deco].prototype = this;
 return new tree[deco];
}; 
tree.redapples = function () {
 this.decorate = function () {
  this.redapples.prototype.decorate(); // 第7步:先执行原型(这时候是angel了)的decorate方法
  console.log('add some red apples'); // 第8步 再输出 red
  // 将这2步作为redapples的decorate方法
 }
};
tree.blueapples = function () {
 this.decorate = function () {
  this.blueapples.prototype.decorate(); // 第1步:先执行原型的decorate方法,也就是tree.decorate()
  console.log('put on some blue apples'); // 第2步 再输出blue
  // 将这2步作为blueapples的decorate方法
 }
}; 
tree.angel = function () {
 this.decorate = function () {
  this.angel.prototype.decorate(); // 第4步:先执行原型(这时候是blueapples了)的decorate方法
  console.log('an angel on the top'); // 第5步 再输出angel
  // 将这2步作为angel的decorate方法
 }
};
tree = tree.getdecorator('blueapples'); // 第3步:将blueapples对象赋给tree,这时候父原型里的getdecorator依然可用
tree = tree.getdecorator('angel'); // 第6步:将angel对象赋给tree,这时候父原型的父原型里的getdecorator依然可用
tree = tree.getdecorator('redapples'); // 第9步:将redapples对象赋给tree
tree.decorate(); // 第10步:执行redapples对象的decorate方法
//make sure the tree won't fall
//add blue apples
//an angel on the top
//put on some red apples

实例3看起来很复杂,实际上分析逻辑还是和前面两个实例一样,我们可以看出实例3中一共声明了5个函数表达式。我们重点分析下下面的代码:

//tree.getdecorator('blueapples')返回new出来的tree.blueapples的实例对象,并将该对象赋值给空的tree对象
tree = tree.getdecorator('blueapples'); //new出来的tree.blueapples的实例对象的原型指向 --> 空对象tree 
//tree.getdecorator('angel')返回new出来的tree.angel的实例对象(这行代码中的第二个tree已经是上面一行代码运行结果后的tree.blueapples的实例对象)
tree = tree.getdecorator('angel'); //new出来的tree.angel的实例对象的原型指向 --> tree.blueapples的实例对象
//tree.getdecorator('redapples')返回new出来的tree.redapples的实例对象(这行代码中的第二个tree已经是上面一行代码运行结果后的tree.angel的实例对象)
tree = tree.getdecorator('redapples'); //new出来的tree.redapples的实例对象的原型指向 --> tree.angel的实例对象
//调用tree.decorate(),这里的tree已经是new出来的tree.redapples的实例对象了。
//tree.redapples的实例对象的decorate属性方法里面的第一行代码是 “this.redapples.prototype.decorate()”
//结合上面的分析可以得出以下的原型链结构:
//this.redapples.prototype --> tree.angel;
//tree.angel.prototype --> tree.blueapples;
//tree.blueapples.prototype --> 空对象tree
tree.decorate();

分析到这里,就不难知道最后的输出结果了。

三、其他:

我们可以看出本文章中的装饰者模式案例中用了很多this,对this不太了解的朋友可以移步到 《》。

本文案例建议复制下来逐行分析,赶紧行动起来吧!

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!