javascript设计模式 接口介绍


Posted in Javascript onJuly 24, 2012

这本书中第一个重要的内容就是接口。

大家对接口应该都不陌生,简单的说接口就是一个契约或者规范。在强类型的面相对象语言中,接口可以很容易的实现。但是在javascript中并没有原生的创建或者实现接口的方式,或者判定一个类型是否实现了某个接口,我们只能利用js的灵活性的特点,模拟接口。
在javascript中实现接口有三种方式:注释描述、属性验证、鸭子模型。
note:因为我看的是英文书,翻译水平有限,不知道有些词汇如何翻译,大家只能领会精神了。
1. 注释描述 (Describing Interfaces with Comments)
例子:

/* 
interface Composite { 
function add(child); 

function remove(child); 

function getChild(index); 
} 
interface FormItem { 

function save(); 
} 
*/ 
var CompositeForm = function(id, method, action) { // implements Composite, FormItem 

... 
}; 
//Implement the Composite interface. 
CompositeForm.prototype.add = function(child) { 
... 
}; 
CompositeForm.prototype.remove = function(child) { 
... 
}; 
CompositeForm.prototype.getChild = function(index) { 
... 
}; 
// Implement the FormItem interface. 
CompositeForm.prototype.save = function() { 
... 
};

模拟其他面向对象语言,使用interface 和 implements关键字,但是需要将他们注释起来,这样就不会有语法错误。
这样做的目的,只是为了告诉其他编程人员,这些类需要实现什么方法,需要在编程的时候加以注意。但是没有提供一种验证方式,这些类是否正确实现了这些接口中的方法,这种方式就是一种文档化的作法。
2. 属性验证(Emulating Interfaces with Attribute Checking)
例子:
/* interface 
Composite { 
function add(child); 
function remove(child); 
function getChild(index); 
} 
interface FormItem { 
function save(); 
} 
*/ 
var CompositeForm = function(id, method, action) { 
this.implementsInterfaces = ['Composite', 'FormItem']; 
... 
}; 
... 
function addForm(formInstance) { 
if(!implements(formInstance, 'Composite', 'FormItem')) { 

throw new Error("Object does not implement a required interface."); 

} 

... 
} 
// The implements function, which checks to see if an object declares that it 
// implements the required interfaces. 
function implements(object) { 

for(var i = 1; i < arguments.length; i++) { 


// Looping through all arguments 


// after the first one. 


var interfaceName = arguments[i]; 


var interfaceFound = false; 


for(var j = 0; j < object.implementsInterfaces.length; j++) { 



if(object.implementsInterfaces[j] == interfaceName) { 




interfaceFound = true; 




break; 



} 


} 


if(!interfaceFound) { 



return false; 



// An interface was not found. 

 } 

} 

return true; 
// All interfaces were found. 
}

这种方式比第一种方式有所改进,接口的定义仍然以注释的方式实现,但是添加了验证方法,判断一个类型是否实现了某个接口。
3.鸭子类型(Emulating Interfaces with Duck Typing)
// Interfaces. 
var Composite = new Interface('Composite', ['add', 'remove', 'getChild']); 
var FormItem = new Interface('FormItem', ['save']); 
// CompositeForm class 
var CompositeForm = function(id, method, action) { 
... 
}; 
... 
function addForm(formInstance) { 

ensureImplements(formInstance, Composite, FormItem); 

// This function will throw an error if a required method is not implemented. 

... 
} 
// Constructor. 
var Interface = function(name, methods) { 

if(arguments.length != 2) { 


throw new Error("Interface constructor called with " 






 + arguments.length + "arguments, but expected exactly 2."); 

} 

this.name = name; 

this.methods = []; 

for(var i = 0, len = methods.length; i < len; i++) { 


if(typeof methods[i] !== 'string') { 



throw new Error("Interface constructor expects method names to be " 







+ "passed in as a string."); 


} 


this.methods.push(methods[i]); 

} 
}; 
// Static class method. 
Interface.ensureImplements = function(object) { 

if(arguments.length < 2) { 


throw new Error("Function Interface.ensureImplements called with " 







+arguments.length + "arguments, but expected at least 2."); 

} 
for(var i = 1, len = arguments.length; i < len; i++) { 


var interface = arguments[i]; 


if(interface.constructor !== Interface) { 



throw new Error("Function Interface.ensureImplements expects arguments" 







+ "two and above to be instances of Interface."); 


} 


for(var j = 0, methodsLen = interface.methods.length; j < methodsLen; j++) { 



var method = interface.methods[j]; 



if(!object[method] || typeof object[method] !== 'function') { 




throw new Error("Function Interface.ensureImplements: object " 








+ "does not implement the " + interface.name + " interface. Method " + method + " was not found."); 



} 


} 

} 
};

何时使用接口?
一直使用严格的类型验证并不适合,因为大多数javascript程序员已经在没有接口和接口验证的情况下编程多年。当你用设计模式开始设计一个很复杂的系统的时候,使用接口更有益处。看起来使用接口好像限制了javascript的灵活性,但实际上他让你的代码变得更加的松耦合。他使你的代码变得更加灵活,你可以传送任何类型的变量,并且保证他有你想要的方法。有很多场景接口非常适合使用。
在一个大型系统里,很多程序员一起参与开发项目,接口就变得非常必要了。程序员经常要访问一个还没有实现的api,或者为其他程序员提供别人依赖的一个方法存根,在这种情况下,接口变得相当的有价值。他们可以文档化api,并作为编程的契约。当存根被实现的api替换的时候你能立即知道,如果在开发过程中api有所变动,他能被另一个实现该接口的方法无缝替换。
如何使用接口?
首先要解决的问题是,在你的代码中是否适合使用接口。如果是小项目,使用接口会增加代码的复杂度。所以你要确定使用接口的情况下,是否是益处大于弊端。如果要使用接口,下面有几条建议:
1.引用Interface 类到你的页面文件。interface的源文件你可以再如下站点找到: http://jsdesignpatterns.com/.
2.检查你的代码,确定哪些方法需要抽象到接口里面。
3.创建接口对象,没个接口对象里面包含一组相关的方法。
4.移除所有构造器验证,我们将使用第三种接口实现方式,也就是鸭子类型。
5.用Interface.ensureImplements替代构造器验证。
Javascript 相关文章推荐
jquery 可排列的表实现代码
Nov 13 Javascript
TextArea 控件的最大长度问题(js json)
Dec 16 Javascript
利用JS延迟加载百度分享代码,提高网页速度
Jul 01 Javascript
node.js请求HTTPS报错:UNABLE_TO_VERIFY_LEAF_SIGNATURE\的解决方法
Dec 18 Javascript
jQuery实现鼠标跟随效果
Feb 20 Javascript
JS实现线性表的链式表示方法示例【经典数据结构】
Apr 11 Javascript
AngularJS发送异步Get/Post请求方法
Aug 13 Javascript
关于RxJS Subject的学习笔记
Dec 05 Javascript
JavaScript数组去重的方法总结【12种方法,号称史上最全】
Feb 28 Javascript
微信小程序实现左侧滑动导航栏
Apr 08 Javascript
Vue基础配置讲解
Nov 29 Javascript
javascript设计模式 ? 职责链模式原理与用法实例分析
Apr 16 Javascript
javascript设计模式 封装和信息隐藏(上)
Jul 24 #Javascript
js+xml生成级联下拉框代码
Jul 24 #Javascript
40个新鲜出炉的jQuery 插件和免费教程[上]
Jul 24 #Javascript
基于jquery的跟随屏幕滚动代码
Jul 24 #Javascript
基于JQuery的类似新浪微博展示信息效果的代码
Jul 23 #Javascript
基于jquery自定义图片热区效果
Jul 21 #Javascript
Js四则运算函数代码
Jul 21 #Javascript
You might like
页面利用渐进式JPEG来提升用户体验度
2014/12/01 PHP
php中__toString()方法用法示例
2016/12/07 PHP
Javascript实现重力弹跳拖拽运动效果示例
2013/06/28 Javascript
JS保存和删除cookie操作 判断cookie是否存在
2013/11/13 Javascript
jquery获取颜色在ie和ff下的区别示例介绍
2014/03/28 Javascript
Jquery 垂直多级手风琴菜单附源码下载
2015/11/17 Javascript
Bootstrap每天必学之进度条
2015/11/30 Javascript
JavaScript位移运算符(无符号) &gt;&gt;&gt; 三个大于号 的使用方法详解
2016/03/31 Javascript
关于JS变量和作用域详解
2016/07/28 Javascript
js 转json格式的字符串为对象或数组(前后台)的方法
2016/11/02 Javascript
JS验证input输入框(字母,数字,符号,中文)
2017/03/23 Javascript
详解React Native顶|底部导航使用小技巧
2017/09/14 Javascript
详解从零搭建 vue2 vue-router2 webpack3 工程
2017/11/22 Javascript
Vue 数组和对象更新,但是页面没有刷新的解决方式
2019/11/09 Javascript
element 中 el-menu 组件的无限极循环思路代码详解
2020/04/26 Javascript
vue 动态设置img的src地址无效,npm run build 后找不到文件的解决
2020/07/26 Javascript
解决vue项目axios每次请求session不一致的问题
2020/10/24 Javascript
全面了解Python的getattr(),setattr(),delattr(),hasattr()
2016/06/14 Python
Python中对象迭代与反迭代的技巧总结
2016/09/17 Python
通过实例解析Python调用json模块
2019/12/11 Python
python sitk.show()与imageJ结合使用常见的问题
2020/04/20 Python
详细分析Python可变对象和不可变对象
2020/07/09 Python
CSS伪类与CSS伪元素的区别及由来具体说明
2012/12/07 HTML / CSS
HTML5有哪些新特征
2015/12/01 HTML / CSS
html5 canvas实现给图片添加平铺水印
2019/08/20 HTML / CSS
世界上最悠久的自行车制造商:Ribble Cycles
2017/03/18 全球购物
YBF Beauty官网:美丽挚友,美国知名彩妆品牌
2020/11/22 全球购物
安全大检查反思材料
2014/01/31 职场文书
会计师职业生涯规划范文
2014/02/18 职场文书
生物制药专业求职信
2014/03/11 职场文书
初中家长寄语
2014/04/02 职场文书
小学生作文评语大全
2014/04/21 职场文书
祖国在我心中的演讲稿
2014/05/04 职场文书
企业安全生产检查制度
2015/08/06 职场文书
幼儿园教师培训心得体会
2016/01/21 职场文书
Nginx内网单机反向代理的实现
2021/11/07 Servers