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 相关文章推荐
Exjs 入门篇
Apr 07 Javascript
jQuery插件开发全解析
Oct 10 Javascript
用JS做的简单的可折叠的两级树形菜单
Sep 21 Javascript
使用jQuery.wechat构建微信WEB应用
Oct 09 Javascript
解析javascript图片懒加载与预加载的分析总结
Oct 27 Javascript
详解jquery easyui之datagrid使用参考
Dec 05 Javascript
原生js编写2048小游戏
Mar 17 Javascript
2种简单的js倒计时方式
Oct 20 Javascript
详解webpack4之splitchunksPlugin代码包分拆
Dec 04 Javascript
深入浅析Vue 中 ref 的使用
Apr 29 Javascript
浅析Vue下的components模板使用及应用
Nov 27 Javascript
javascript canvas时钟模拟器
Jul 13 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
PHP环境搭建最新方法
2006/09/05 PHP
PHP使用mysql与mysqli连接Mysql数据库用法示例
2016/07/07 PHP
tp5.0框架隐藏index.php入口文件及模块和控制器的方法分析
2020/02/11 PHP
PHP实现倒计时功能
2020/11/16 PHP
JAVASCRIPT  THIS详解 面向对象
2009/03/25 Javascript
Jquery 的扩展方法总结
2011/10/01 Javascript
jquery获取table中的某行全部td的内容方法
2013/03/08 Javascript
使用js在页面中绘制表格核心代码
2013/09/16 Javascript
深入理解Javascript中this的作用域
2014/08/12 Javascript
AngularJS中取消对HTML片段转义的方法例子
2015/01/04 Javascript
js实现绿白相间竖向网页百叶窗动画切换效果
2015/03/02 Javascript
jquery实现两边飘浮可关闭的对联广告
2015/11/27 Javascript
轻松使用jQuery双向select控件Bootstrap Dual Listbox
2015/12/13 Javascript
关于Node.js的events.EventEmitter用法介绍
2017/04/01 Javascript
微信小程序实现缓存根据不同的id来进行设置和读取缓存
2017/06/12 Javascript
jquery实现用户登陆界面(示例讲解)
2017/09/06 jQuery
vue组件文档(.md)中如何自动导入示例(.vue)详解
2019/01/25 Javascript
Node.js系列之发起get/post请求(2)
2019/08/30 Javascript
Python通过poll实现异步IO的方法
2015/06/04 Python
Python实现PS图像抽象画风效果的方法
2018/01/23 Python
Python 3.x 安装opencv+opencv_contrib的操作方法
2018/04/02 Python
PyQt5实现简易计算器
2020/05/30 Python
Pycharm创建项目时如何自动添加头部信息
2019/11/14 Python
pytorch点乘与叉乘示例讲解
2019/12/27 Python
卸载tensorflow-cpu重装tensorflow-gpu操作
2020/06/23 Python
美国在线购物频道:Shop LC
2019/04/21 全球购物
计算机专业毕业生自我鉴定
2014/01/16 职场文书
中学校庆方案
2014/03/17 职场文书
村主任“四风”问题个人整改措施
2014/10/04 职场文书
白鹤梁导游词
2015/02/06 职场文书
三下乡个人总结
2015/03/04 职场文书
2015年计生协会工作总结
2015/04/24 职场文书
python使用torch随机初始化参数
2022/03/22 Python
什么是Python装饰器?如何定义和使用?
2022/04/11 Python
Python捕获、播放和保存摄像头视频并提高视频清晰度和对比度
2022/04/14 Python
详解OpenCV获取高动态范围(HDR)成像
2022/04/29 Python