摘要: <script>function HashTable() { this.Items=[]; this.Count=function(){return this.Items.length;}; //长度 this.DictionaryEntry=function(key,value) { this.Key=key||null; this.Value=value||null;... 阅读全文
posted @ 2009-06-12 15:10 流星陨落 阅读(158) 评论(0) 推荐(0) 编辑