文件名称:inherit.js:使用可继承和启用闭包的类
文件大小:3KB
文件格式:ZIP
更新时间:2024-08-01 09:02:55
JavaScript
继承.js 描述 使用可继承和启用闭包的类 用法 GrandParent.prototype = new Inherit(); var grandParentInstance = new GrandParent(); GrandParentInstance.ctor(); alert('介绍:'+grandParentInstance.getName()); GrandParent.prototype = new Inherit(); Parent.prototype = new GrandParent(); var parentInstance = new Parent(); parentInstance.ctor(); alert('介绍:'+parentInstance.getName()); GrandParent.prototype = new Inherit(); Pare
【文件预览】:
inherit.js-master
----inherit.php(1KB)
----README.md(720B)
----script()
--------inheritjs()