摘要:
lmap = function() { this.keys = new Array(); this.values = new Array();};lmap.prototype = { put : function(key, value) { if (!key) throw 'your key is not valid'; for (index in this.values) { if (this.values[index] == null) { this.keys[index] = key; this.values[index] = value; return; ... 阅读全文
posted @ 2012-04-10 22:58
有泥土的路
阅读(651)
评论(0)
推荐(0)
浙公网安备 33010602011771号