我用下面的函数来从参数数组创建的JavaScript函数实例:
var instantiate = function (instantiate) {
return function (constructor, args, prototype) {
"use strict";
if (prototype) {
var proto = constructor.prototype;
constructor.prototype = prototype;
}
var instance = instantiate(constructor, args);
if (proto) constructor.prototype = proto;
return instance;
};
}(Function.prototype.apply.bind(function () {
var args = Array.prototype.slice.call(arguments);
var constructor = Function.prototype.bind.apply(this, [null].concat(args));
return new constructor;
}));
使用上述功能,您可以创建实例如下(见小提琴 ):
var f = instantiate(F, [], G.prototype);
alert(f instanceof F); // false
alert(f instanceof G); // true
f.alert(); // F
function F() {
this.alert = function () {
alert("F");
};
}
function G() {
this.alert = function () {
alert("G");
};
}
上面的代码适用于类似的用户内置构造F
。 然而,它并不像原生构造工作Array
显而易见的安全原因。 您可以随时创建一个数组,然后改变其__proto__
属性,但我使用犀牛此代码,这样就不会在那里工作。 是否有任何其他的方式来实现在JavaScript同样的结果?