我正在尝试在 Javascript 中实现一个集合 - 有没有为我的集合中的元素实现一个类似数组的索引器?
到目前为止,我有以下代码:
var Collection = function() {
var collection = [];
var addAccessor = function(api, name) {
if (toString.call(collection[name]) == '[object Function]') {
api[name] = (function(){
return function () {
return collection[name](arguments);
};
}());
}
else {
Object.defineProperty(api, name, {
get: function() { return collection.length; },
enumerable: true,
configurable: true
});
}
};
var publicApi = {};
var methods = Object.getOwnPropertyNames(Array.prototype);
for(var i = 0, len = methods.length; i < len; ++i) {
var method = methods[i];
addAccessor(publicApi, method);
}
return publicApi;
};
};
所有Array.prototype
方法和属性都按预期工作。
var c = Collection();
c.push(4);
console.log(c.length); // 1
但我无法弄清楚的一件事是如何让以下工作:
console.log(c[0]); // should print 4, currently undefined
有没有办法做到这一点?