2.04 - the interface implementation for this book.js

来自「JS设计模式源代码」· JavaScript 代码 · 共 21 行

JS
21
字号
// Interfaces.var Composite = new Interface('Composite', ['add', 'remove', 'getChild']);var FormItem = new Interface('FormItem', ['save']);// CompositeForm classvar CompositeForm = function(id, method, action) { // implements Composite, FormItem   ...};...function addForm(formInstance) {    Interface.ensureImplements(formInstance, Composite, FormItem);    // This function will throw an error if a required method is not implemented,    // halting execution of the function.    // All code beneath this line will be executed only if the checks pass.    ...}	

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?