JavaScript设计模式之一Inte易做图ce接口
如何用面向对象的思想来写JavaScript,对于初学者应该是比较难的,我们经常用的JQuery其实也是用面向对象的思想去封装的,今天我们来看看如何在Javascript中用Inte易做图ce,在C#还是JAVA中都应该面向接口设计我们的程序,在C#和Java中都Inte易做图ce这样的关键字,但是JavaScript中没有相应的机制,但是Javascript很灵活,我们可以用它的特性去模仿Inte易做图ce,但是我们需要加入一些methods来做check的动作。
我们来看下一个Inte易做图ce的作用: 继承了这个Inte易做图ce就必须要实现这个Inte易做图ce中定义的方法(方法签名)//JavaScript 现在还做不到方法的签名的约束
var Inte易做图ce = function (name, methods) { if (arguments.length != 2) { throw new Error("the inte易做图ce length is bigger than 2"); } this.Name = name; this.Method = []; for (var i = 0; i < methods.length; i++) { if(typeof methods[i]!== string) { throw new Error("the method name is not string"); } this.Method.push(methods[i]); } } /*static method in inte易做图ce*/ Inte易做图ce.ensureImplement = function (object) { if (arguments.length < 2) { throw new Error("there is not Inte易做图ce or the instance"); } for (var i = 1; i < arguments.length; i++) { var inte易做图ce1 = arguments[i]; if (inte易做图ce1.constructor !== Inte易做图ce) { throw new Error("the argument is not inte易做图ce"); } for (var j = 0; j < inte易做图ce1.Method.length; j++) { var method = inte易做图ce1.Method[j]; if (!object[method] || typeof object[method] !== function) { throw new Error("you instance doesnt implement the inte易做图ce"); } } } }
我们来分析一下code,我们现在的做法是用来比较一个Instance中的方法名在接口中是否定义了。
我先定义一个接口(2个参数),第二个参数是接口中的方法名。Check方法用简单的2层for循环来做比较动作。
我们来看下如何去用这个接口:
var Person = new Inte易做图ce("Person", ["GetName", "GetAge"]); var Man = function (name, age) { this.Name = name; this.Age = age; } Man.prototype = { GetName: function () { return this.Name; }, // GetAge: function () { return this.Age; } } var test = function (instance) { Inte易做图ce.ensureImplement(instance, Person); var name = instance.GetName(); alert(name); } test(new Man("Alan",20));
如果我们注释了上面的GetAge方法,在执行的时候就会出错。在ensureImplement的时候发现并没有去实现这个方法。
补充:web前端 , JavaScript ,