摘要: function Hashtable()//自定义hashtable{ this._hash = new Object(); this.add = function(key, value) { if (typeof (key) != "undefined") { if (this.contains(key) == false) { this._hash[key] = typeof (value) == "undefined" ? null : value; return true; ... 阅读全文
posted @ 2012-09-28 15:17 ``炯`` 阅读(1534) 评论(0) 推荐(0) 编辑