欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

简单的JS多重继承示例_javascript技巧

程序员文章站 2022-04-24 23:21:37
...
复制代码 代码如下:

$defined = function (v) {
return v != undefined;
}

Class = function () {
var base = {};
for (var k=0; k //{{new arguments[k]() with custom constructor field.
var o = arguments[k].prototype;
o.constructor = arguments[k];
arguments[k].call(o);
//}}
for (key in o) base[key] = o[key];
}
function Klass () {
// for every class one object cache.
var clso = null;
function klass() {
if (arguments.length // hit cache.
return clso;
}
if ($defined(this.constructor.init)) {
// use init() for class initialization.
this.constructor.init.apply(this, arguments);
}
clso = this;
}
klass.prototype = base;
return klass;
}
return Klass();
}

A = new Class();
A.init = function () {
this.x = 400;
this.y = 300;
}
B = new Class(A);
B.init = function () {
this.y = 200;
this.z = 100;
}
C = new Class(B);
C.init = function () {
this.z = 0;
}
c = new C();
alert(c.x);
alert(c.y);
alert(c.z);
相关标签: JS 多重继承