伪代码如下:
var Constructor = function(arr) {
// 在这里对传入的数组进行处理
}
var $ = function(arr) {
return new Constructor(arr);
}
Constructor.prototype = Object.create(Array.prototype);
Constructor.prototype.add = function(item) { ... }
我预期的结果是:$(arr) 作为 Constructor 的实例可以调用自定义的 add() 方法,也可以调用 Array.prototype 上的数组的原生方法。
主要是不希望直接在 Array.prototype 上定义 add() 方法。
arr = [1, 2, 3] 本来是 Array 的实例,但是我希望在 arr 和 Array 中间添加一个构造函数,即 arr 的原型链为 Constructor.prototype ==> Array.prototype
我准备用上面伪代码的方式实现,但是 Constructor 内部不知道怎么处理,或者这种思路根本就是错的,各位大神不要被伪代码影响。
请问可以实现这种功能吗?如果可以,怎么实现?
泛舟湖上清波郎朗
相关分类