javascript"多态可调用对象"

Aar*_*ken 7 javascript

在多态可调用对象上看到了这篇文章,并试图让它工作,但似乎它们并不是真正的多态,或者至少它们不尊重原型链.

此代码打印undefined,而不是"hello there".

这种方法不适用于原型,还是我做错了什么?

var callableType = function (constructor) {
  return function () {
    var callableInstance = function () {
      return callableInstance.callOverload.apply(callableInstance, arguments);
    };
    constructor.apply(callableInstance, arguments);
    return callableInstance;
  };
};

var X = callableType(function() {
    this.callOverload = function(){console.log('called!')};
});

X.prototype.hello = "hello there";

var x_i = new X();
console.log(x_i.hello);
Run Code Online (Sandbox Code Playgroud)

use*_*716 6

你需要改变这个:

var X = callableType(function() {
    this.callOverload = function(){console.log('called!')};
});
Run Code Online (Sandbox Code Playgroud)

对此:

var X = new (callableType(function() {
    this.callOverload = function(){console.log('called!')};
}));
Run Code Online (Sandbox Code Playgroud)

请注意调用new周围的括号以及括号callableType.

允许callableType调用括号并返回函数,该函数用作构造函数new.


编辑:

var X = callableType(function() {
    this.callOverload = function() {
        console.log('called!')
    };
});

var someType = X();      // the returned constructor is referenced
var anotherType = X();   // the returned constructor is referenced

someType.prototype.hello = "hello there";  // modify the prototype of
anotherType.prototype.hello = "howdy";     //    both constructors

var some_i = new someType();           // create a new "someType" object
console.log(some_i.hello, some_i);

var another_i = new anotherType();     // create a new "anotherType" object
console.log(another_i.hello, another_i);

someType();      // or just invoke the callOverload
anotherType();
Run Code Online (Sandbox Code Playgroud)

我真的不知道你使用这种模式的方式/地点/原因,但我想有一些很好的理由.