2014年8月16日
摘要: function Dictionary() { this.data = new Array(); this.put = function (key, value) { this.data[key] = value; }; this.get = function ... 阅读全文
posted @ 2014-08-16 13:26 朝着 阅读(308) 评论(0) 推荐(0) 编辑