javascript设计模式 – 建造者模式原理与应用实例
网络编程 2021-07-04 15:02www.168986.cn编程入门
这篇文章主要介绍了javascript设计模式 – 建造者模式,结合实例形式分析了javascript建造者模式相关概念、原理、应用场景及操作注意事项,需要的朋友可以参考下
本文实例讲述了javascript设计模式 – 建造者模式原理与应用。分享给大家供大家参考,具体如下
介绍建造者模式又称为生成器模式,它是一种较为复杂、使用频率相对较低的创建型模式。建造者模式为客户端返回的不是一个简单的产品,而是一个由多个部件组成的复杂产品
定义将一个复杂对象的构建与他的表示分离,使得同样的构建过程可以创建不同的表示。建造者模式是一种对象创建型模式。
示例
var Dialog = function (){ this.type = ''; this.name = ''; this.element = ''; this.show = function(){ console.log(this.name + ': ' + this.type + this.element); } } var noticeBuilder = function(){ this.dialog = new Dialog(); this.setType = function(){ this.dialog.type = 'notice'; } this.setName = function(){ this.dialog.name = '公告'; } this.setElement = function(){ this.dialog.element = '<div>notice</div>'; } this.getDialog = function(){ return this.dialog; } } var toastBuilder = function(){ this.dialog = new Dialog(); this.setType = function(){ this.dialog.type = 'toast'; } this.setName = function(){ this.dialog.name = '提示'; } this.setElement = function(){ this.dialog.element = '<div>toast</div>'; } this.getDialog = function(){ return this.dialog; } } function construct(ab){ ab.setType(); ab.setName(); ab.setElement(); return ab.getDialog(); } var notice = new noticeBuilder(); var toast = new toastBuilder(); var noticeIns = construct(notice); var toastIns = construct(toast); noticeIns.show(); //公告: notice<div>notice</div> toastIns.show(); //提示: toast<div>toast</div>
在建造者模式中,客户端需要通过指挥类(construct方法)一步一步建造一个完整的产品,相同的构造过程可以创建完全不同的产品。
建造者模式可以将复杂对象的构建与其表示相分离,使用相同构建过程可以创建不同的表示层,用户只需要指定需要建造的类型就可以,而具体的建造过程和细节就不需要知道了。
为了简化系统结构,去掉construct参数,可以将construct合并到builder
var Dialog = function (){ this.type = ''; this.name = ''; this.element = ''; this.show = function(){ console.log(this.name + ': ' + this.type + this.element); } } var Construct = function(){ this.construct = function(){ this.setType(); this.setName(); this.setElement(); return this.getDialog(); } } var noticeBuilder = function(){ this.dialog = new Dialog(); this.setType = function(){ this.dialog.type = 'notice'; } this.setName = function(){ this.dialog.name = '公告'; } this.setElement = function(){ this.dialog.element = '<div>notice</div>'; } this.getDialog = function(){ return this.dialog; } } var toastBuilder = function(){ this.dialog = new Dialog(); this.setType = function(){ this.dialog.type = 'toast'; } this.setName = function(){ this.dialog.name = '提示'; } this.setElement = function(){ this.dialog.element = '<div>toast</div>'; } this.getDialog = function(){ return this.dialog; } } noticeBuilder.prototype = new Construct(); toastBuilder.prototype = new Construct(); var notice = new noticeBuilder(); var toast = new toastBuilder(); var noticeIns = notice.construct(); var toastIns = toast.construct(); noticeIns.show(); //公告: notice<div>notice</div> toastIns.show(); //提示: toast<div>toast</div>
建造者模式
优点
建造者模式中,客户端不需要知道产品内部组成的细节,将产品使用与其创建解耦,使得相同创建过程可以创建不同的产品对象
每个具体的建造类都相对独立,方便替换和新增,满足开关原则
缺点
建造者模式需要多个产品存在相同的创建流程,如果产品差异性大,就不适用建造者模式。
如果产品内部结构复杂多变,就需要定义很多建造类来实现这种变化,会导致系统变得庞大
感兴趣的朋友可以使用在线HTML/CSS/JavaScript代码运行工具测试上述代码运行效果。
更多关于JavaScript相关内容感兴趣的读者可查看本站专题《》、《》、《》、《》及《》
希望本文所述对大家JavaScript程序设计有所帮助。
编程语言
- 宿迁百度关键词排名指南:实现精准营销的关键
- 四川SEO优化怎么做网络推广
- 立昂技术备案老域名收购:如何为您的业务赋能
- 安徽百度关键词seo贵不贵,一般需要多少钱
- 吉林百度快照排名怎么做电话营销
- 多伦新手做SEO怎么做
- 甘肃优化关键词排名推广怎么做论坛营销
- 沙雅SEO网站推广:提升您的在线可见性
- 四川SEO优化如何提升销售额和销售量
- 聂荣网站排名优化:提升网站可见性的全方位指
- 涞水SEO:提升地方企业在线可见性的策略
- 辽宁百度seo排名怎样做网站排名
- 临湘哪有关键词排名优化:提升网站可见度的关
- 黑龙江百度网站优化有没有优惠
- 凉城优化关键词排名推广:提升您的网络可见性
- 萝北整站优化:提升您网站流量和排名的全面指