首页| 新闻| 娱乐| 游戏| 科普| 文学| 编程| 系统| 数据库| 建站| 学院| 产品| 网管| 维修| 办公| 热点
该类可以通过要害字(key)查找相对应的值(value),要害字的类型可以是string、number、boolean类型,值的类型不限,代码如下:
运行代码框<script>function struct(key, value){ this.key = key; this.value = value;}function setat(key, value){ for (var i = 0; i < this.map.length; i ) { if ( this.map[i].key === key ) { this.map[i].value = value; return; } } this.map[this.map.length] = new struct(key, value);}function lookup(key){ for (var i = 0; i < this.map.length; i ) { if ( this.map[i].key === key ) { return this.map[i].value; } } return null;}function removekey(key){ var v; for (var i = 0; i < this.map.length; i ) { v = this.map.pop(); if ( v.key === key ) continue; this.map.unshift(v); }}function getcount(){ return this.map.length;}function isempty(){ return this.map.length <= 0;}function classmap() { this.map = new array(); this.lookup = lookup; this.setat = setat; this.removekey = removekey; this.getcount = getcount; this.isempty = isempty;}window.{ var map = new classmap(); alert("is the map empty? " map.isempty()); // string to array map.setat("sw1", new array("sw1_1")); map.setat("sw2", new array("sw2_1", "sw2_2")); map.setat("sw3", new array("sw3_1", "sw3_2", "sw3_3")); alert(map.lookup("sw5")); // null alert(map.lookup("sw2")); // "sw2_1, sw2_2" alert(map.getcount()); // 3 // number to string map.setat(1, "sw1"); map.setat(2, "sw2"); alert(map.lookup(2)); // "sw2" map.setat(2, new array("sw2_1", "sw2_2")); alert(map.lookup(2)); // "sw2_1, sw2_2" alert(map.getcount()); // 5 // string to number map.setat("1", 1); map.setat("2", 2); alert(map.lookup("1")); // 1 alert(map.lookup(1)); // "sw1" map.setat("sw3", 33); alert(map.lookup("sw3")); // 33 alert(map.getcount()); // 7 // number to number map.setat(1, 11); map.setat(2, 22); alert(map.lookup(1)); // 11 alert(map.getcount()); // 7 map.removekey(1); alert(map.lookup(1)); // null alert(map.getcount()); // 6 // boolean to array map.setat(false, new array("false", "true")); alert(map.lookup(false)); alert(map.getcount()); // 7}</script> [ctrl a 全部选择 提示:你可先修改部分代码,再按运行]
练就火眼金睛 十一种常见电脑
打印机共享提示“操作无法完成
如何查找有故障的配件
回眸一笑百魅生,六宫粉黛无颜色
岁月静美,剪一影烟雨江南
芜湖有个“松鼠小镇”
小满:小得盈满,一切刚刚好!
一串串晶莹剔透的葡萄,像一颗颗宝石挂在藤
正宗老北京脆皮烤鸭
人逢知己千杯少,喝酒搞笑图集
搞笑试卷,学生恶搞答题
新闻热点
疑难解答
图片精选
Dreamweaver问题集锦大全
Dreamweaver CS3 的最新功能
Dreamweaver CS3代码片断功能面板
Dreamweaver技巧:运用代码片断工具
网友关注