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
しかし、私が理解できないことの1つは、以下を機能させる方法です。
console.log(c[0]); // should print 4, currently undefined
とにかくこれを行うことはありますか?