微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

javascript“多态可调用对象”

我看到 this article on polymorphic callable objects并试图让它工作,但似乎它们不是真正的多态,或者至少它们不尊重原型链.

这段代码打印未定义,而不是“你好”.

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

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);

解决方法

你需要改变这个:
var X = callableType(function() {
    this.calloverload = function(){console.log('called!')};
});

对此:

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

注意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();

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

原文地址:https://www.jb51.cc/js/158243.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐