-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass.js
47 lines (40 loc) · 1.54 KB
/
class.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
function Class(param,parent) {
var child = param.initialize || function () {};
var key;
for (key in parent){
if(parent.hasOwnProperty(key))child[key] = parent[key];
}
parent = parent || Object;
// 临时构造函数ctor,用来打断父对象和子对象原型的直接链接,以防止父对象原型改变殃及子对象
function ctor(){};
//child.prototype copy parent.prototype,not ref;
ctor.prototype = parent.prototype;
child.prototype = new ctor();
//上面这两步会改变child.prototype.constructor为父类的构造函数,要重新把constructor指回自己
child.prototype.constructor = child;
for (key in param){
child.prototype[key] = param[key];
}
child.__super__ = parent;
//b.super --> B --> b.prototype --> new ctor --> a.prtootype
var current_class = child;
child.prototype.super = function(){
//
if(current_class.__super__.prototype[arguments[0]] !== undefined)
{
//对于this.super("foo",a*10,b*100)要去掉第一个参数,然后再把后两个参数传递给父类相关的方法
var args = Array.prototype.slice.call(arguments,1);
//修复无限递归
current_class = current_class.__super__;
var result = current_class.prototype[arguments[0]].apply(this,args);
current_class = child;
return result;
}
else
{
return undefined;
}
}
return child;
};
module.exports = Class;