【发布时间】:2009-12-17 22:15:25
【问题描述】:
我对构造函数使用 Resig 的 makeClass() 方法:
// makeClass - By John Resig (MIT Licensed)
// Allows either new User() or User() to be employed for construction.
function makeClass(){
return function(args){
if ( this instanceof arguments.callee ) {
if ( typeof this.init == "function" )
this.init.apply( this, (args && args.callee) ? args : arguments );
} else
return new arguments.callee( arguments );
};
}
// usage:
// ------
// class implementer:
// var MyType = makeClass();
// MyType.prototype.init = function(a,b,c) {/* ... */};
// ------
// class user:
// var instance = new MyType("cats", 17, "September");
// -or-
// var instance = MyType("cats", 17, "September");
//
var MyType = makeClass();
MyType.prototype.init = function(a,b,c) {
say("MyType init: hello");
};
MyType.prototype.Method1 = function() {
say("MyType.Method1: hello");
};
MyType.prototype.Subtype1 = makeClass();
MyType.prototype.Subtype1.prototype.init = function(name) {
say("MyType.Subtype1.init: (" + name + ")");
}
在该代码中,MyType() 是顶级类型,而 MyType.Subtype1 是嵌套类型。
要使用它,我可以这样做:
var x = new MyType();
x.Method1();
var y = new x.Subtype1("y");
我能否在 Subtype1() 的 init() 中获得对父类型实例的引用? 如何?
【问题讨论】: