继承.js
inherit.js 是一种在 JavaScript 中正确使用原型链的简单方法。 通常,为了使事情简单,只使用 1 级原型链,因为多级原型链。 这个库使得在原型链中使用任意数量的级别变得非常容易,这有助于保持代码。
用法
inherit ( childConstructor , parentConstructor )
例子
代码
function Grandfather ( ) { }
Grandfather . prototype . getName = function ( ) { return 'John Doe I' ; } ;
function Father ( ) { }
Father . prototype . getName = function ( ) { return 'John Doe II' ; } ;
inherit ( Father , Gr
1